From ced48f7513ac929ab3266377ba23eaeaed1974e1 Mon Sep 17 00:00:00 2001 From: Sarah Mottram Date: Tue, 28 Sep 2021 20:59:05 +0200 Subject: [PATCH 01/12] first fetch and injecting project names into html --- code/index.html | 1 + code/script.js | 28 + code/test_data/sarahs-repos-testing.json | 857 +++++++++++++++++++++++ 3 files changed, 886 insertions(+) create mode 100644 code/test_data/sarahs-repos-testing.json diff --git a/code/index.html b/code/index.html index 2fb5e0ae..b2f90ef3 100644 --- a/code/index.html +++ b/code/index.html @@ -17,5 +17,6 @@

Projects:

+ \ No newline at end of file diff --git a/code/script.js b/code/script.js index e69de29b..2f428635 100644 --- a/code/script.js +++ b/code/script.js @@ -0,0 +1,28 @@ +// DOM selectors +const main = document.getElementById("projects") + + +const username = 'Smelbows' +const USERS_REPOS_API = `https://api.github.com/users/${username}/repos` +const TEST_USERS_REPOS_API = `/code/test_data/sarahs-repos-testing.json` + + +const fetchUserRepos = (url) => { + fetch(url) + .then((res) => res.json()) + .then(filterForTechnigoRepos) + .then((repos) => { + console.log(repos) + repos.forEach(writeHTMLForRepo) + }) +} + +const filterForTechnigoRepos = (data) => { + return data.filter(repo => repo.name.startsWith('project')) +} + +const writeHTMLForRepo = (repo) => { + main.innerHTML += `

${repo.name}

` +} + +fetchUserRepos(TEST_USERS_REPOS_API) \ No newline at end of file diff --git a/code/test_data/sarahs-repos-testing.json b/code/test_data/sarahs-repos-testing.json new file mode 100644 index 00000000..0aff3630 --- /dev/null +++ b/code/test_data/sarahs-repos-testing.json @@ -0,0 +1,857 @@ +[ + { + "id": 276050977, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzYwNTA5Nzc=", + "name": "Complete-Python-3-Bootcamp", + "full_name": "Smelbows/Complete-Python-3-Bootcamp", + "private": false, + "owner": { + "login": "Smelbows", + "id": 67631502, + "node_id": "MDQ6VXNlcjY3NjMxNTAy", + "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Smelbows", + "html_url": "https://github.com/Smelbows", + "followers_url": "https://api.github.com/users/Smelbows/followers", + "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", + "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", + "organizations_url": "https://api.github.com/users/Smelbows/orgs", + "repos_url": "https://api.github.com/users/Smelbows/repos", + "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", + "received_events_url": "https://api.github.com/users/Smelbows/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Smelbows/Complete-Python-3-Bootcamp", + "description": "Course Files for Complete Python 3 Bootcamp Course on Udemy", + "fork": true, + "url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp", + "forks_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/forks", + "keys_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/teams", + "hooks_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/hooks", + "issue_events_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/issues/events{/number}", + "events_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/events", + "assignees_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/assignees{/user}", + "branches_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/branches{/branch}", + "tags_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/tags", + "blobs_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/languages", + "stargazers_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/stargazers", + "contributors_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/contributors", + "subscribers_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/subscribers", + "subscription_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/subscription", + "commits_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/contents/{+path}", + "compare_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/merges", + "archive_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/downloads", + "issues_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/issues{/number}", + "pulls_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/labels{/name}", + "releases_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/releases{/id}", + "deployments_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/deployments", + "created_at": "2020-06-30T09:09:08Z", + "updated_at": "2020-06-30T09:09:09Z", + "pushed_at": "2020-06-28T18:27:07Z", + "git_url": "git://github.com/Smelbows/Complete-Python-3-Bootcamp.git", + "ssh_url": "git@github.com:Smelbows/Complete-Python-3-Bootcamp.git", + "clone_url": "https://github.com/Smelbows/Complete-Python-3-Bootcamp.git", + "svn_url": "https://github.com/Smelbows/Complete-Python-3-Bootcamp", + "homepage": null, + "size": 37128, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + { + "id": 401261589, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDEyNjE1ODk=", + "name": "project-business-site", + "full_name": "Smelbows/project-business-site", + "private": false, + "owner": { + "login": "Smelbows", + "id": 67631502, + "node_id": "MDQ6VXNlcjY3NjMxNTAy", + "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Smelbows", + "html_url": "https://github.com/Smelbows", + "followers_url": "https://api.github.com/users/Smelbows/followers", + "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", + "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", + "organizations_url": "https://api.github.com/users/Smelbows/orgs", + "repos_url": "https://api.github.com/users/Smelbows/repos", + "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", + "received_events_url": "https://api.github.com/users/Smelbows/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Smelbows/project-business-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Smelbows/project-business-site", + "forks_url": "https://api.github.com/repos/Smelbows/project-business-site/forks", + "keys_url": "https://api.github.com/repos/Smelbows/project-business-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Smelbows/project-business-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Smelbows/project-business-site/teams", + "hooks_url": "https://api.github.com/repos/Smelbows/project-business-site/hooks", + "issue_events_url": "https://api.github.com/repos/Smelbows/project-business-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Smelbows/project-business-site/events", + "assignees_url": "https://api.github.com/repos/Smelbows/project-business-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Smelbows/project-business-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Smelbows/project-business-site/tags", + "blobs_url": "https://api.github.com/repos/Smelbows/project-business-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Smelbows/project-business-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Smelbows/project-business-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Smelbows/project-business-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Smelbows/project-business-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Smelbows/project-business-site/languages", + "stargazers_url": "https://api.github.com/repos/Smelbows/project-business-site/stargazers", + "contributors_url": "https://api.github.com/repos/Smelbows/project-business-site/contributors", + "subscribers_url": "https://api.github.com/repos/Smelbows/project-business-site/subscribers", + "subscription_url": "https://api.github.com/repos/Smelbows/project-business-site/subscription", + "commits_url": "https://api.github.com/repos/Smelbows/project-business-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Smelbows/project-business-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Smelbows/project-business-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Smelbows/project-business-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Smelbows/project-business-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Smelbows/project-business-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Smelbows/project-business-site/merges", + "archive_url": "https://api.github.com/repos/Smelbows/project-business-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Smelbows/project-business-site/downloads", + "issues_url": "https://api.github.com/repos/Smelbows/project-business-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Smelbows/project-business-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Smelbows/project-business-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Smelbows/project-business-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Smelbows/project-business-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Smelbows/project-business-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Smelbows/project-business-site/deployments", + "created_at": "2021-08-30T07:55:33Z", + "updated_at": "2021-09-05T13:33:15Z", + "pushed_at": "2021-09-05T13:33:12Z", + "git_url": "git://github.com/Smelbows/project-business-site.git", + "ssh_url": "git@github.com:Smelbows/project-business-site.git", + "clone_url": "https://github.com/Smelbows/project-business-site.git", + "svn_url": "https://github.com/Smelbows/project-business-site", + "homepage": null, + "size": 139962, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + { + "id": 403600365, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDM2MDAzNjU=", + "name": "project-chatbot", + "full_name": "Smelbows/project-chatbot", + "private": false, + "owner": { + "login": "Smelbows", + "id": 67631502, + "node_id": "MDQ6VXNlcjY3NjMxNTAy", + "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Smelbows", + "html_url": "https://github.com/Smelbows", + "followers_url": "https://api.github.com/users/Smelbows/followers", + "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", + "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", + "organizations_url": "https://api.github.com/users/Smelbows/orgs", + "repos_url": "https://api.github.com/users/Smelbows/repos", + "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", + "received_events_url": "https://api.github.com/users/Smelbows/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Smelbows/project-chatbot", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Smelbows/project-chatbot", + "forks_url": "https://api.github.com/repos/Smelbows/project-chatbot/forks", + "keys_url": "https://api.github.com/repos/Smelbows/project-chatbot/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Smelbows/project-chatbot/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Smelbows/project-chatbot/teams", + "hooks_url": "https://api.github.com/repos/Smelbows/project-chatbot/hooks", + "issue_events_url": "https://api.github.com/repos/Smelbows/project-chatbot/issues/events{/number}", + "events_url": "https://api.github.com/repos/Smelbows/project-chatbot/events", + "assignees_url": "https://api.github.com/repos/Smelbows/project-chatbot/assignees{/user}", + "branches_url": "https://api.github.com/repos/Smelbows/project-chatbot/branches{/branch}", + "tags_url": "https://api.github.com/repos/Smelbows/project-chatbot/tags", + "blobs_url": "https://api.github.com/repos/Smelbows/project-chatbot/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Smelbows/project-chatbot/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Smelbows/project-chatbot/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Smelbows/project-chatbot/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Smelbows/project-chatbot/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Smelbows/project-chatbot/languages", + "stargazers_url": "https://api.github.com/repos/Smelbows/project-chatbot/stargazers", + "contributors_url": "https://api.github.com/repos/Smelbows/project-chatbot/contributors", + "subscribers_url": "https://api.github.com/repos/Smelbows/project-chatbot/subscribers", + "subscription_url": "https://api.github.com/repos/Smelbows/project-chatbot/subscription", + "commits_url": "https://api.github.com/repos/Smelbows/project-chatbot/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Smelbows/project-chatbot/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Smelbows/project-chatbot/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Smelbows/project-chatbot/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Smelbows/project-chatbot/contents/{+path}", + "compare_url": "https://api.github.com/repos/Smelbows/project-chatbot/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Smelbows/project-chatbot/merges", + "archive_url": "https://api.github.com/repos/Smelbows/project-chatbot/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Smelbows/project-chatbot/downloads", + "issues_url": "https://api.github.com/repos/Smelbows/project-chatbot/issues{/number}", + "pulls_url": "https://api.github.com/repos/Smelbows/project-chatbot/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Smelbows/project-chatbot/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Smelbows/project-chatbot/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Smelbows/project-chatbot/labels{/name}", + "releases_url": "https://api.github.com/repos/Smelbows/project-chatbot/releases{/id}", + "deployments_url": "https://api.github.com/repos/Smelbows/project-chatbot/deployments", + "created_at": "2021-09-06T11:41:27Z", + "updated_at": "2021-09-15T12:54:37Z", + "pushed_at": "2021-09-15T12:54:34Z", + "git_url": "git://github.com/Smelbows/project-chatbot.git", + "ssh_url": "git@github.com:Smelbows/project-chatbot.git", + "clone_url": "https://github.com/Smelbows/project-chatbot.git", + "svn_url": "https://github.com/Smelbows/project-chatbot", + "homepage": null, + "size": 2682, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "main" + }, + { + "id": 411276090, + "node_id": "R_kgDOGIOTOg", + "name": "project-github-tracker", + "full_name": "Smelbows/project-github-tracker", + "private": false, + "owner": { + "login": "Smelbows", + "id": 67631502, + "node_id": "MDQ6VXNlcjY3NjMxNTAy", + "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Smelbows", + "html_url": "https://github.com/Smelbows", + "followers_url": "https://api.github.com/users/Smelbows/followers", + "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", + "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", + "organizations_url": "https://api.github.com/users/Smelbows/orgs", + "repos_url": "https://api.github.com/users/Smelbows/repos", + "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", + "received_events_url": "https://api.github.com/users/Smelbows/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Smelbows/project-github-tracker", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Smelbows/project-github-tracker", + "forks_url": "https://api.github.com/repos/Smelbows/project-github-tracker/forks", + "keys_url": "https://api.github.com/repos/Smelbows/project-github-tracker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Smelbows/project-github-tracker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Smelbows/project-github-tracker/teams", + "hooks_url": "https://api.github.com/repos/Smelbows/project-github-tracker/hooks", + "issue_events_url": "https://api.github.com/repos/Smelbows/project-github-tracker/issues/events{/number}", + "events_url": "https://api.github.com/repos/Smelbows/project-github-tracker/events", + "assignees_url": "https://api.github.com/repos/Smelbows/project-github-tracker/assignees{/user}", + "branches_url": "https://api.github.com/repos/Smelbows/project-github-tracker/branches{/branch}", + "tags_url": "https://api.github.com/repos/Smelbows/project-github-tracker/tags", + "blobs_url": "https://api.github.com/repos/Smelbows/project-github-tracker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Smelbows/project-github-tracker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Smelbows/project-github-tracker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Smelbows/project-github-tracker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Smelbows/project-github-tracker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Smelbows/project-github-tracker/languages", + "stargazers_url": "https://api.github.com/repos/Smelbows/project-github-tracker/stargazers", + "contributors_url": "https://api.github.com/repos/Smelbows/project-github-tracker/contributors", + "subscribers_url": "https://api.github.com/repos/Smelbows/project-github-tracker/subscribers", + "subscription_url": "https://api.github.com/repos/Smelbows/project-github-tracker/subscription", + "commits_url": "https://api.github.com/repos/Smelbows/project-github-tracker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Smelbows/project-github-tracker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Smelbows/project-github-tracker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Smelbows/project-github-tracker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Smelbows/project-github-tracker/contents/{+path}", + "compare_url": "https://api.github.com/repos/Smelbows/project-github-tracker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Smelbows/project-github-tracker/merges", + "archive_url": "https://api.github.com/repos/Smelbows/project-github-tracker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Smelbows/project-github-tracker/downloads", + "issues_url": "https://api.github.com/repos/Smelbows/project-github-tracker/issues{/number}", + "pulls_url": "https://api.github.com/repos/Smelbows/project-github-tracker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Smelbows/project-github-tracker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Smelbows/project-github-tracker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Smelbows/project-github-tracker/labels{/name}", + "releases_url": "https://api.github.com/repos/Smelbows/project-github-tracker/releases{/id}", + "deployments_url": "https://api.github.com/repos/Smelbows/project-github-tracker/deployments", + "created_at": "2021-09-28T12:39:56Z", + "updated_at": "2021-09-28T12:39:57Z", + "pushed_at": "2021-09-24T06:28:19Z", + "git_url": "git://github.com/Smelbows/project-github-tracker.git", + "ssh_url": "git@github.com:Smelbows/project-github-tracker.git", + "clone_url": "https://github.com/Smelbows/project-github-tracker.git", + "svn_url": "https://github.com/Smelbows/project-github-tracker", + "homepage": null, + "size": 2, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main" + }, + { + "id": 405934867, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDU5MzQ4Njc=", + "name": "project-guess-who", + "full_name": "Smelbows/project-guess-who", + "private": false, + "owner": { + "login": "Smelbows", + "id": 67631502, + "node_id": "MDQ6VXNlcjY3NjMxNTAy", + "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Smelbows", + "html_url": "https://github.com/Smelbows", + "followers_url": "https://api.github.com/users/Smelbows/followers", + "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", + "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", + "organizations_url": "https://api.github.com/users/Smelbows/orgs", + "repos_url": "https://api.github.com/users/Smelbows/repos", + "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", + "received_events_url": "https://api.github.com/users/Smelbows/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Smelbows/project-guess-who", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Smelbows/project-guess-who", + "forks_url": "https://api.github.com/repos/Smelbows/project-guess-who/forks", + "keys_url": "https://api.github.com/repos/Smelbows/project-guess-who/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Smelbows/project-guess-who/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Smelbows/project-guess-who/teams", + "hooks_url": "https://api.github.com/repos/Smelbows/project-guess-who/hooks", + "issue_events_url": "https://api.github.com/repos/Smelbows/project-guess-who/issues/events{/number}", + "events_url": "https://api.github.com/repos/Smelbows/project-guess-who/events", + "assignees_url": "https://api.github.com/repos/Smelbows/project-guess-who/assignees{/user}", + "branches_url": "https://api.github.com/repos/Smelbows/project-guess-who/branches{/branch}", + "tags_url": "https://api.github.com/repos/Smelbows/project-guess-who/tags", + "blobs_url": "https://api.github.com/repos/Smelbows/project-guess-who/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Smelbows/project-guess-who/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Smelbows/project-guess-who/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Smelbows/project-guess-who/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Smelbows/project-guess-who/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Smelbows/project-guess-who/languages", + "stargazers_url": "https://api.github.com/repos/Smelbows/project-guess-who/stargazers", + "contributors_url": "https://api.github.com/repos/Smelbows/project-guess-who/contributors", + "subscribers_url": "https://api.github.com/repos/Smelbows/project-guess-who/subscribers", + "subscription_url": "https://api.github.com/repos/Smelbows/project-guess-who/subscription", + "commits_url": "https://api.github.com/repos/Smelbows/project-guess-who/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Smelbows/project-guess-who/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Smelbows/project-guess-who/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Smelbows/project-guess-who/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Smelbows/project-guess-who/contents/{+path}", + "compare_url": "https://api.github.com/repos/Smelbows/project-guess-who/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Smelbows/project-guess-who/merges", + "archive_url": "https://api.github.com/repos/Smelbows/project-guess-who/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Smelbows/project-guess-who/downloads", + "issues_url": "https://api.github.com/repos/Smelbows/project-guess-who/issues{/number}", + "pulls_url": "https://api.github.com/repos/Smelbows/project-guess-who/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Smelbows/project-guess-who/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Smelbows/project-guess-who/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Smelbows/project-guess-who/labels{/name}", + "releases_url": "https://api.github.com/repos/Smelbows/project-guess-who/releases{/id}", + "deployments_url": "https://api.github.com/repos/Smelbows/project-guess-who/deployments", + "created_at": "2021-09-13T10:54:14Z", + "updated_at": "2021-09-17T14:12:31Z", + "pushed_at": "2021-09-17T14:12:28Z", + "git_url": "git://github.com/Smelbows/project-guess-who.git", + "ssh_url": "git@github.com:Smelbows/project-guess-who.git", + "clone_url": "https://github.com/Smelbows/project-guess-who.git", + "svn_url": "https://github.com/Smelbows/project-guess-who", + "homepage": null, + "size": 760, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main" + }, + { + "id": 399080438, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwODA0Mzg=", + "name": "project-news-site", + "full_name": "Smelbows/project-news-site", + "private": false, + "owner": { + "login": "Smelbows", + "id": 67631502, + "node_id": "MDQ6VXNlcjY3NjMxNTAy", + "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Smelbows", + "html_url": "https://github.com/Smelbows", + "followers_url": "https://api.github.com/users/Smelbows/followers", + "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", + "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", + "organizations_url": "https://api.github.com/users/Smelbows/orgs", + "repos_url": "https://api.github.com/users/Smelbows/repos", + "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", + "received_events_url": "https://api.github.com/users/Smelbows/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Smelbows/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Smelbows/project-news-site", + "forks_url": "https://api.github.com/repos/Smelbows/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Smelbows/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Smelbows/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Smelbows/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Smelbows/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Smelbows/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Smelbows/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Smelbows/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Smelbows/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Smelbows/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Smelbows/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Smelbows/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Smelbows/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Smelbows/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Smelbows/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Smelbows/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Smelbows/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Smelbows/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Smelbows/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Smelbows/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Smelbows/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Smelbows/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Smelbows/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Smelbows/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Smelbows/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Smelbows/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Smelbows/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Smelbows/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Smelbows/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Smelbows/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Smelbows/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Smelbows/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Smelbows/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Smelbows/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Smelbows/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Smelbows/project-news-site/deployments", + "created_at": "2021-08-23T11:40:28Z", + "updated_at": "2021-08-27T07:17:52Z", + "pushed_at": "2021-08-27T07:17:50Z", + "git_url": "git://github.com/Smelbows/project-news-site.git", + "ssh_url": "git@github.com:Smelbows/project-news-site.git", + "clone_url": "https://github.com/Smelbows/project-news-site.git", + "svn_url": "https://github.com/Smelbows/project-news-site", + "homepage": null, + "size": 842, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + { + "id": 410780879, + "node_id": "R_kgDOGHwEzw", + "name": "project-weather-app", + "full_name": "Smelbows/project-weather-app", + "private": false, + "owner": { + "login": "Smelbows", + "id": 67631502, + "node_id": "MDQ6VXNlcjY3NjMxNTAy", + "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Smelbows", + "html_url": "https://github.com/Smelbows", + "followers_url": "https://api.github.com/users/Smelbows/followers", + "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", + "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", + "organizations_url": "https://api.github.com/users/Smelbows/orgs", + "repos_url": "https://api.github.com/users/Smelbows/repos", + "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", + "received_events_url": "https://api.github.com/users/Smelbows/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Smelbows/project-weather-app", + "description": "Weather Web App", + "fork": true, + "url": "https://api.github.com/repos/Smelbows/project-weather-app", + "forks_url": "https://api.github.com/repos/Smelbows/project-weather-app/forks", + "keys_url": "https://api.github.com/repos/Smelbows/project-weather-app/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Smelbows/project-weather-app/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Smelbows/project-weather-app/teams", + "hooks_url": "https://api.github.com/repos/Smelbows/project-weather-app/hooks", + "issue_events_url": "https://api.github.com/repos/Smelbows/project-weather-app/issues/events{/number}", + "events_url": "https://api.github.com/repos/Smelbows/project-weather-app/events", + "assignees_url": "https://api.github.com/repos/Smelbows/project-weather-app/assignees{/user}", + "branches_url": "https://api.github.com/repos/Smelbows/project-weather-app/branches{/branch}", + "tags_url": "https://api.github.com/repos/Smelbows/project-weather-app/tags", + "blobs_url": "https://api.github.com/repos/Smelbows/project-weather-app/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Smelbows/project-weather-app/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Smelbows/project-weather-app/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Smelbows/project-weather-app/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Smelbows/project-weather-app/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Smelbows/project-weather-app/languages", + "stargazers_url": "https://api.github.com/repos/Smelbows/project-weather-app/stargazers", + "contributors_url": "https://api.github.com/repos/Smelbows/project-weather-app/contributors", + "subscribers_url": "https://api.github.com/repos/Smelbows/project-weather-app/subscribers", + "subscription_url": "https://api.github.com/repos/Smelbows/project-weather-app/subscription", + "commits_url": "https://api.github.com/repos/Smelbows/project-weather-app/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Smelbows/project-weather-app/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Smelbows/project-weather-app/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Smelbows/project-weather-app/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Smelbows/project-weather-app/contents/{+path}", + "compare_url": "https://api.github.com/repos/Smelbows/project-weather-app/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Smelbows/project-weather-app/merges", + "archive_url": "https://api.github.com/repos/Smelbows/project-weather-app/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Smelbows/project-weather-app/downloads", + "issues_url": "https://api.github.com/repos/Smelbows/project-weather-app/issues{/number}", + "pulls_url": "https://api.github.com/repos/Smelbows/project-weather-app/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Smelbows/project-weather-app/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Smelbows/project-weather-app/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Smelbows/project-weather-app/labels{/name}", + "releases_url": "https://api.github.com/repos/Smelbows/project-weather-app/releases{/id}", + "deployments_url": "https://api.github.com/repos/Smelbows/project-weather-app/deployments", + "created_at": "2021-09-27T07:17:43Z", + "updated_at": "2021-09-27T07:17:43Z", + "pushed_at": "2021-09-24T13:56:35Z", + "git_url": "git://github.com/Smelbows/project-weather-app.git", + "ssh_url": "git@github.com:Smelbows/project-weather-app.git", + "clone_url": "https://github.com/Smelbows/project-weather-app.git", + "svn_url": "https://github.com/Smelbows/project-weather-app", + "homepage": "", + "size": 10026, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + { + "id": 364862791, + "node_id": "MDEwOlJlcG9zaXRvcnkzNjQ4NjI3OTE=", + "name": "technigo-application-glossary-word-github", + "full_name": "Smelbows/technigo-application-glossary-word-github", + "private": false, + "owner": { + "login": "Smelbows", + "id": 67631502, + "node_id": "MDQ6VXNlcjY3NjMxNTAy", + "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Smelbows", + "html_url": "https://github.com/Smelbows", + "followers_url": "https://api.github.com/users/Smelbows/followers", + "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", + "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", + "organizations_url": "https://api.github.com/users/Smelbows/orgs", + "repos_url": "https://api.github.com/users/Smelbows/repos", + "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", + "received_events_url": "https://api.github.com/users/Smelbows/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Smelbows/technigo-application-glossary-word-github", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github", + "forks_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/forks", + "keys_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/teams", + "hooks_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/hooks", + "issue_events_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/issues/events{/number}", + "events_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/events", + "assignees_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/assignees{/user}", + "branches_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/branches{/branch}", + "tags_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/tags", + "blobs_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/languages", + "stargazers_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/stargazers", + "contributors_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/contributors", + "subscribers_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/subscribers", + "subscription_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/subscription", + "commits_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/contents/{+path}", + "compare_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/merges", + "archive_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/downloads", + "issues_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/issues{/number}", + "pulls_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/labels{/name}", + "releases_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/releases{/id}", + "deployments_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/deployments", + "created_at": "2021-05-06T09:54:03Z", + "updated_at": "2021-05-06T10:45:24Z", + "pushed_at": "2021-05-06T10:45:21Z", + "git_url": "git://github.com/Smelbows/technigo-application-glossary-word-github.git", + "ssh_url": "git@github.com:Smelbows/technigo-application-glossary-word-github.git", + "clone_url": "https://github.com/Smelbows/technigo-application-glossary-word-github.git", + "svn_url": "https://github.com/Smelbows/technigo-application-glossary-word-github", + "homepage": null, + "size": 2, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main" + }, + { + "id": 410847633, + "node_id": "R_kgDOGH0JkQ", + "name": "unit-tests", + "full_name": "Smelbows/unit-tests", + "private": false, + "owner": { + "login": "Smelbows", + "id": 67631502, + "node_id": "MDQ6VXNlcjY3NjMxNTAy", + "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Smelbows", + "html_url": "https://github.com/Smelbows", + "followers_url": "https://api.github.com/users/Smelbows/followers", + "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", + "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", + "organizations_url": "https://api.github.com/users/Smelbows/orgs", + "repos_url": "https://api.github.com/users/Smelbows/repos", + "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", + "received_events_url": "https://api.github.com/users/Smelbows/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Smelbows/unit-tests", + "description": "Challenge yourself to make all these unit tests pass!", + "fork": true, + "url": "https://api.github.com/repos/Smelbows/unit-tests", + "forks_url": "https://api.github.com/repos/Smelbows/unit-tests/forks", + "keys_url": "https://api.github.com/repos/Smelbows/unit-tests/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Smelbows/unit-tests/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Smelbows/unit-tests/teams", + "hooks_url": "https://api.github.com/repos/Smelbows/unit-tests/hooks", + "issue_events_url": "https://api.github.com/repos/Smelbows/unit-tests/issues/events{/number}", + "events_url": "https://api.github.com/repos/Smelbows/unit-tests/events", + "assignees_url": "https://api.github.com/repos/Smelbows/unit-tests/assignees{/user}", + "branches_url": "https://api.github.com/repos/Smelbows/unit-tests/branches{/branch}", + "tags_url": "https://api.github.com/repos/Smelbows/unit-tests/tags", + "blobs_url": "https://api.github.com/repos/Smelbows/unit-tests/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Smelbows/unit-tests/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Smelbows/unit-tests/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Smelbows/unit-tests/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Smelbows/unit-tests/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Smelbows/unit-tests/languages", + "stargazers_url": "https://api.github.com/repos/Smelbows/unit-tests/stargazers", + "contributors_url": "https://api.github.com/repos/Smelbows/unit-tests/contributors", + "subscribers_url": "https://api.github.com/repos/Smelbows/unit-tests/subscribers", + "subscription_url": "https://api.github.com/repos/Smelbows/unit-tests/subscription", + "commits_url": "https://api.github.com/repos/Smelbows/unit-tests/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Smelbows/unit-tests/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Smelbows/unit-tests/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Smelbows/unit-tests/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Smelbows/unit-tests/contents/{+path}", + "compare_url": "https://api.github.com/repos/Smelbows/unit-tests/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Smelbows/unit-tests/merges", + "archive_url": "https://api.github.com/repos/Smelbows/unit-tests/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Smelbows/unit-tests/downloads", + "issues_url": "https://api.github.com/repos/Smelbows/unit-tests/issues{/number}", + "pulls_url": "https://api.github.com/repos/Smelbows/unit-tests/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Smelbows/unit-tests/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Smelbows/unit-tests/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Smelbows/unit-tests/labels{/name}", + "releases_url": "https://api.github.com/repos/Smelbows/unit-tests/releases{/id}", + "deployments_url": "https://api.github.com/repos/Smelbows/unit-tests/deployments", + "created_at": "2021-09-27T10:57:38Z", + "updated_at": "2021-09-27T14:19:18Z", + "pushed_at": "2021-09-27T14:19:15Z", + "git_url": "git://github.com/Smelbows/unit-tests.git", + "ssh_url": "git@github.com:Smelbows/unit-tests.git", + "clone_url": "https://github.com/Smelbows/unit-tests.git", + "svn_url": "https://github.com/Smelbows/unit-tests", + "homepage": null, + "size": 53, + "stargazers_count": 0, + "watchers_count": 0, + "language": "JavaScript", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } +] From 520492bc01c23a8028f35f8c372f8c33573e43d9 Mon Sep 17 00:00:00 2001 From: Sarah Mottram Date: Wed, 29 Sep 2021 15:26:23 +0200 Subject: [PATCH 02/12] injected javascript from api into basic html (no styling) --- code/index.html | 1 + code/script.js | 73 +- code/style.css | 29 + code/test_data/test_pulls.json | 21650 +++++++++++++++++++++++++++++++ 4 files changed, 21738 insertions(+), 15 deletions(-) create mode 100644 code/test_data/test_pulls.json diff --git a/code/index.html b/code/index.html index b2f90ef3..e08fd4f8 100644 --- a/code/index.html +++ b/code/index.html @@ -9,6 +9,7 @@

GitHub Tracker

+

Projects:

diff --git a/code/script.js b/code/script.js index 2f428635..b3d08dc9 100644 --- a/code/script.js +++ b/code/script.js @@ -1,28 +1,71 @@ // DOM selectors -const main = document.getElementById("projects") - - -const username = 'Smelbows' -const USERS_REPOS_API = `https://api.github.com/users/${username}/repos` -const TEST_USERS_REPOS_API = `/code/test_data/sarahs-repos-testing.json` +const main = document.getElementById("projects"); +const userInfo = document.getElementById("user-info") +const username = "Smelbows"; +const USERS_REPOS_API = `https://api.github.com/users/${username}/repos`; +const TEST_USERS_REPOS_API = `/code/test_data/sarahs-repos-testing.json`; const fetchUserRepos = (url) => { - fetch(url) + fetch(url) .then((res) => res.json()) .then(filterForTechnigoRepos) .then((repos) => { - console.log(repos) - repos.forEach(writeHTMLForRepo) - }) -} + writeHTMLForUser(repos[0]) + repos.forEach((repo) => { + writeHTMLForRepo(repo); + fetchPullRequests(repo); + }); + }); +}; const filterForTechnigoRepos = (data) => { - return data.filter(repo => repo.name.startsWith('project')) + return data.filter((repo) => repo.name.startsWith("project")); +}; + +const writeHTMLForUser = (repo) => { + userInfo.innerHTML = `

${repo.owner.login}

github avatar` } const writeHTMLForRepo = (repo) => { - main.innerHTML += `

${repo.name}

` -} + main.innerHTML += `
${repo.name}

Default branch: ${ + repo.default_branch + }

Last pushed: ${new Date( + repo.pushed_at + ).toDateString()}

Number of commits:

`; +}; + +const fetchPullRequests = (repo) => { + fetch(`https://api.github.com/repos/Technigo/${repo.name}/pulls?per_page=100`) + .then((res) => res.json()) + .then((data) => { + let myPullRequest; + if (repo.name === "project-weather-app") { + myPullRequest = data.find((pull) => pull.user.login === "anndimi"); + fetchCommits(myPullRequest.commits_url, repo.name); + } else if (data === []) { + document.getElementById(`commit-${repo.name}`).innerHTML += "0"; + } else { + myPullRequest = data.find( + (pull) => pull.user.login === repo.owner.login + ); + fetchCommits(myPullRequest.commits_url, repo.name); + } + console.log(myPullRequest); + }); +}; + +const fetchCommits = (url, name) => { + fetch(url) + .then((res) => res.json()) + .then((data) => { + console.log(data); + document.getElementById(`commit-${name}`).innerHTML += `${data.length}`; + }); +}; -fetchUserRepos(TEST_USERS_REPOS_API) \ No newline at end of file +fetchUserRepos(TEST_USERS_REPOS_API); diff --git a/code/style.css b/code/style.css index 7c8ad447..2a7668d4 100644 --- a/code/style.css +++ b/code/style.css @@ -1,3 +1,32 @@ body { background: #FFECE9; +} + +.avatar { + border-radius: 50%; +} +main { + display: grid; + grid-template-columns: 1fr; +} + +.repo-container { + border: solid black 1px; +} + + + + + + +@media (min-width: 662px) { + main { + grid-template-columns: repeat(3, 1fr); + } +} + +@media (min-width: 1024px) { + main { + grid-template-columns: repeat(4, 1fr); + } } \ No newline at end of file diff --git a/code/test_data/test_pulls.json b/code/test_data/test_pulls.json new file mode 100644 index 00000000..947da021 --- /dev/null +++ b/code/test_data/test_pulls.json @@ -0,0 +1,21650 @@ +[ + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/249", + "id": 744945880, + "node_id": "PR_kwDODaoKxM4sZvjY", + "html_url": "https://github.com/Technigo/project-news-site/pull/249", + "diff_url": "https://github.com/Technigo/project-news-site/pull/249.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/249.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/249", + "number": 249, + "state": "open", + "locked": false, + "title": "project-news-site J ", + "user": { + "login": "Jsfrulle", + "id": 87137770, + "node_id": "MDQ6VXNlcjg3MTM3Nzcw", + "avatar_url": "https://avatars.githubusercontent.com/u/87137770?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Jsfrulle", + "html_url": "https://github.com/Jsfrulle", + "followers_url": "https://api.github.com/users/Jsfrulle/followers", + "following_url": "https://api.github.com/users/Jsfrulle/following{/other_user}", + "gists_url": "https://api.github.com/users/Jsfrulle/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Jsfrulle/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Jsfrulle/subscriptions", + "organizations_url": "https://api.github.com/users/Jsfrulle/orgs", + "repos_url": "https://api.github.com/users/Jsfrulle/repos", + "events_url": "https://api.github.com/users/Jsfrulle/events{/privacy}", + "received_events_url": "https://api.github.com/users/Jsfrulle/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-09-28T15:49:02Z", + "updated_at": "2021-09-28T15:49:02Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "299624f183e443e295f4987ff9d916615d169bdd", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/249/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/249/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/249/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/4eb04ccc7c615e4989021b960d754cda3380f362", + "head": { + "label": "Jsfrulle:master", + "ref": "master", + "sha": "4eb04ccc7c615e4989021b960d754cda3380f362", + "user": { + "login": "Jsfrulle", + "id": 87137770, + "node_id": "MDQ6VXNlcjg3MTM3Nzcw", + "avatar_url": "https://avatars.githubusercontent.com/u/87137770?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Jsfrulle", + "html_url": "https://github.com/Jsfrulle", + "followers_url": "https://api.github.com/users/Jsfrulle/followers", + "following_url": "https://api.github.com/users/Jsfrulle/following{/other_user}", + "gists_url": "https://api.github.com/users/Jsfrulle/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Jsfrulle/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Jsfrulle/subscriptions", + "organizations_url": "https://api.github.com/users/Jsfrulle/orgs", + "repos_url": "https://api.github.com/users/Jsfrulle/repos", + "events_url": "https://api.github.com/users/Jsfrulle/events{/privacy}", + "received_events_url": "https://api.github.com/users/Jsfrulle/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 397641167, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTc2NDExNjc=", + "name": "project-news-site", + "full_name": "Jsfrulle/project-news-site", + "private": false, + "owner": { + "login": "Jsfrulle", + "id": 87137770, + "node_id": "MDQ6VXNlcjg3MTM3Nzcw", + "avatar_url": "https://avatars.githubusercontent.com/u/87137770?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Jsfrulle", + "html_url": "https://github.com/Jsfrulle", + "followers_url": "https://api.github.com/users/Jsfrulle/followers", + "following_url": "https://api.github.com/users/Jsfrulle/following{/other_user}", + "gists_url": "https://api.github.com/users/Jsfrulle/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Jsfrulle/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Jsfrulle/subscriptions", + "organizations_url": "https://api.github.com/users/Jsfrulle/orgs", + "repos_url": "https://api.github.com/users/Jsfrulle/repos", + "events_url": "https://api.github.com/users/Jsfrulle/events{/privacy}", + "received_events_url": "https://api.github.com/users/Jsfrulle/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Jsfrulle/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Jsfrulle/project-news-site", + "forks_url": "https://api.github.com/repos/Jsfrulle/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Jsfrulle/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Jsfrulle/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Jsfrulle/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Jsfrulle/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Jsfrulle/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Jsfrulle/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Jsfrulle/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Jsfrulle/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Jsfrulle/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Jsfrulle/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Jsfrulle/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Jsfrulle/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Jsfrulle/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Jsfrulle/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Jsfrulle/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Jsfrulle/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Jsfrulle/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Jsfrulle/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Jsfrulle/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Jsfrulle/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Jsfrulle/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Jsfrulle/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Jsfrulle/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Jsfrulle/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Jsfrulle/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Jsfrulle/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Jsfrulle/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Jsfrulle/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Jsfrulle/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Jsfrulle/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Jsfrulle/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Jsfrulle/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Jsfrulle/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Jsfrulle/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Jsfrulle/project-news-site/deployments", + "created_at": "2021-08-18T15:01:41Z", + "updated_at": "2021-08-26T12:57:51Z", + "pushed_at": "2021-08-26T12:57:48Z", + "git_url": "git://github.com/Jsfrulle/project-news-site.git", + "ssh_url": "git@github.com:Jsfrulle/project-news-site.git", + "clone_url": "https://github.com/Jsfrulle/project-news-site.git", + "svn_url": "https://github.com/Jsfrulle/project-news-site", + "homepage": null, + "size": 2885, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/249" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/249" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/249" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/249/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/249/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/249/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/4eb04ccc7c615e4989021b960d754cda3380f362" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/247", + "id": 724259325, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzI0MjU5MzI1", + "html_url": "https://github.com/Technigo/project-news-site/pull/247", + "diff_url": "https://github.com/Technigo/project-news-site/pull/247.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/247.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/247", + "number": 247, + "state": "open", + "locked": false, + "title": "Mamite's project week 2 - responsive webb- mobile first", + "user": { + "login": "mamite100", + "id": 71432371, + "node_id": "MDQ6VXNlcjcxNDMyMzcx", + "avatar_url": "https://avatars.githubusercontent.com/u/71432371?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mamite100", + "html_url": "https://github.com/mamite100", + "followers_url": "https://api.github.com/users/mamite100/followers", + "following_url": "https://api.github.com/users/mamite100/following{/other_user}", + "gists_url": "https://api.github.com/users/mamite100/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mamite100/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mamite100/subscriptions", + "organizations_url": "https://api.github.com/users/mamite100/orgs", + "repos_url": "https://api.github.com/users/mamite100/repos", + "events_url": "https://api.github.com/users/mamite100/events{/privacy}", + "received_events_url": "https://api.github.com/users/mamite100/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-09-01T08:40:20Z", + "updated_at": "2021-09-09T20:20:58Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "2e19195612718a754f98fc6739c8195dcc123598", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/247/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/247/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/247/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/9daace46d6c5eb64c72d24c3d60a972c2c8ebeb9", + "head": { + "label": "mamite100:master", + "ref": "master", + "sha": "9daace46d6c5eb64c72d24c3d60a972c2c8ebeb9", + "user": { + "login": "mamite100", + "id": 71432371, + "node_id": "MDQ6VXNlcjcxNDMyMzcx", + "avatar_url": "https://avatars.githubusercontent.com/u/71432371?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mamite100", + "html_url": "https://github.com/mamite100", + "followers_url": "https://api.github.com/users/mamite100/followers", + "following_url": "https://api.github.com/users/mamite100/following{/other_user}", + "gists_url": "https://api.github.com/users/mamite100/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mamite100/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mamite100/subscriptions", + "organizations_url": "https://api.github.com/users/mamite100/orgs", + "repos_url": "https://api.github.com/users/mamite100/repos", + "events_url": "https://api.github.com/users/mamite100/events{/privacy}", + "received_events_url": "https://api.github.com/users/mamite100/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399928101, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTk5MjgxMDE=", + "name": "project-news-site", + "full_name": "mamite100/project-news-site", + "private": false, + "owner": { + "login": "mamite100", + "id": 71432371, + "node_id": "MDQ6VXNlcjcxNDMyMzcx", + "avatar_url": "https://avatars.githubusercontent.com/u/71432371?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mamite100", + "html_url": "https://github.com/mamite100", + "followers_url": "https://api.github.com/users/mamite100/followers", + "following_url": "https://api.github.com/users/mamite100/following{/other_user}", + "gists_url": "https://api.github.com/users/mamite100/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mamite100/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mamite100/subscriptions", + "organizations_url": "https://api.github.com/users/mamite100/orgs", + "repos_url": "https://api.github.com/users/mamite100/repos", + "events_url": "https://api.github.com/users/mamite100/events{/privacy}", + "received_events_url": "https://api.github.com/users/mamite100/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/mamite100/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/mamite100/project-news-site", + "forks_url": "https://api.github.com/repos/mamite100/project-news-site/forks", + "keys_url": "https://api.github.com/repos/mamite100/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mamite100/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mamite100/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/mamite100/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/mamite100/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/mamite100/project-news-site/events", + "assignees_url": "https://api.github.com/repos/mamite100/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/mamite100/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/mamite100/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/mamite100/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mamite100/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mamite100/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mamite100/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mamite100/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mamite100/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/mamite100/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/mamite100/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/mamite100/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/mamite100/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/mamite100/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mamite100/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mamite100/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mamite100/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mamite100/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/mamite100/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mamite100/project-news-site/merges", + "archive_url": "https://api.github.com/repos/mamite100/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mamite100/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/mamite100/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/mamite100/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mamite100/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mamite100/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mamite100/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/mamite100/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/mamite100/project-news-site/deployments", + "created_at": "2021-08-25T19:00:21Z", + "updated_at": "2021-09-09T20:21:00Z", + "pushed_at": "2021-09-09T20:20:57Z", + "git_url": "git://github.com/mamite100/project-news-site.git", + "ssh_url": "git@github.com:mamite100/project-news-site.git", + "clone_url": "https://github.com/mamite100/project-news-site.git", + "svn_url": "https://github.com/mamite100/project-news-site", + "homepage": null, + "size": 30729, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/247" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/247" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/247" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/247/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/247/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/247/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/9daace46d6c5eb64c72d24c3d60a972c2c8ebeb9" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/246", + "id": 723678185, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIzNjc4MTg1", + "html_url": "https://github.com/Technigo/project-news-site/pull/246", + "diff_url": "https://github.com/Technigo/project-news-site/pull/246.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/246.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/246", + "number": 246, + "state": "open", + "locked": false, + "title": "Louise B News Site Project W.2", + "user": { + "login": "louise-becker", + "id": 81712921, + "node_id": "MDQ6VXNlcjgxNzEyOTIx", + "avatar_url": "https://avatars.githubusercontent.com/u/81712921?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/louise-becker", + "html_url": "https://github.com/louise-becker", + "followers_url": "https://api.github.com/users/louise-becker/followers", + "following_url": "https://api.github.com/users/louise-becker/following{/other_user}", + "gists_url": "https://api.github.com/users/louise-becker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/louise-becker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/louise-becker/subscriptions", + "organizations_url": "https://api.github.com/users/louise-becker/orgs", + "repos_url": "https://api.github.com/users/louise-becker/repos", + "events_url": "https://api.github.com/users/louise-becker/events{/privacy}", + "received_events_url": "https://api.github.com/users/louise-becker/received_events", + "type": "User", + "site_admin": false + }, + "body": "Link to the page - https://news-site-proj-louise-becker.netlify.app/code/\r\n\r\nI learned a lot of things but mainly about structure, of time and the site itself!\r\n\r\nI started too late and I didn't know the tools well enough to plan. However after learning grid and flex I was able to make a proper sketch of the page and this helped me to understand when it was best with grid and when with flex. If I had more time I would learn more about how to style the different parts of a page, now it's all in one color. And for the first pull I do, the site is not responsive yet.. working on it!", + "created_at": "2021-08-31T19:28:41Z", + "updated_at": "2021-09-14T20:58:50Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "c57eea61f8b938890711a5b2c2f7a39c76fd5615", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/246/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/246/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/246/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/242af22d8c80c9ccbdcc8997cdcca7d716a740eb", + "head": { + "label": "louise-becker:master", + "ref": "master", + "sha": "242af22d8c80c9ccbdcc8997cdcca7d716a740eb", + "user": { + "login": "louise-becker", + "id": 81712921, + "node_id": "MDQ6VXNlcjgxNzEyOTIx", + "avatar_url": "https://avatars.githubusercontent.com/u/81712921?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/louise-becker", + "html_url": "https://github.com/louise-becker", + "followers_url": "https://api.github.com/users/louise-becker/followers", + "following_url": "https://api.github.com/users/louise-becker/following{/other_user}", + "gists_url": "https://api.github.com/users/louise-becker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/louise-becker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/louise-becker/subscriptions", + "organizations_url": "https://api.github.com/users/louise-becker/orgs", + "repos_url": "https://api.github.com/users/louise-becker/repos", + "events_url": "https://api.github.com/users/louise-becker/events{/privacy}", + "received_events_url": "https://api.github.com/users/louise-becker/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 400740435, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDA3NDA0MzU=", + "name": "project-news-site", + "full_name": "louise-becker/project-news-site", + "private": false, + "owner": { + "login": "louise-becker", + "id": 81712921, + "node_id": "MDQ6VXNlcjgxNzEyOTIx", + "avatar_url": "https://avatars.githubusercontent.com/u/81712921?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/louise-becker", + "html_url": "https://github.com/louise-becker", + "followers_url": "https://api.github.com/users/louise-becker/followers", + "following_url": "https://api.github.com/users/louise-becker/following{/other_user}", + "gists_url": "https://api.github.com/users/louise-becker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/louise-becker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/louise-becker/subscriptions", + "organizations_url": "https://api.github.com/users/louise-becker/orgs", + "repos_url": "https://api.github.com/users/louise-becker/repos", + "events_url": "https://api.github.com/users/louise-becker/events{/privacy}", + "received_events_url": "https://api.github.com/users/louise-becker/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/louise-becker/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/louise-becker/project-news-site", + "forks_url": "https://api.github.com/repos/louise-becker/project-news-site/forks", + "keys_url": "https://api.github.com/repos/louise-becker/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/louise-becker/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/louise-becker/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/louise-becker/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/louise-becker/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/louise-becker/project-news-site/events", + "assignees_url": "https://api.github.com/repos/louise-becker/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/louise-becker/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/louise-becker/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/louise-becker/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/louise-becker/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/louise-becker/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/louise-becker/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/louise-becker/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/louise-becker/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/louise-becker/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/louise-becker/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/louise-becker/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/louise-becker/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/louise-becker/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/louise-becker/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/louise-becker/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/louise-becker/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/louise-becker/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/louise-becker/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/louise-becker/project-news-site/merges", + "archive_url": "https://api.github.com/repos/louise-becker/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/louise-becker/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/louise-becker/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/louise-becker/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/louise-becker/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/louise-becker/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/louise-becker/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/louise-becker/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/louise-becker/project-news-site/deployments", + "created_at": "2021-08-28T08:19:58Z", + "updated_at": "2021-09-14T20:58:52Z", + "pushed_at": "2021-09-14T20:58:48Z", + "git_url": "git://github.com/louise-becker/project-news-site.git", + "ssh_url": "git@github.com:louise-becker/project-news-site.git", + "clone_url": "https://github.com/louise-becker/project-news-site.git", + "svn_url": "https://github.com/louise-becker/project-news-site", + "homepage": null, + "size": 902, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/246" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/246" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/246" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/246/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/246/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/246/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/242af22d8c80c9ccbdcc8997cdcca7d716a740eb" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/245", + "id": 723346773, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIzMzQ2Nzcz", + "html_url": "https://github.com/Technigo/project-news-site/pull/245", + "diff_url": "https://github.com/Technigo/project-news-site/pull/245.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/245.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/245", + "number": 245, + "state": "open", + "locked": false, + "title": "Jessica Falk Project New site", + "user": { + "login": "jessicatf", + "id": 71459967, + "node_id": "MDQ6VXNlcjcxNDU5OTY3", + "avatar_url": "https://avatars.githubusercontent.com/u/71459967?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jessicatf", + "html_url": "https://github.com/jessicatf", + "followers_url": "https://api.github.com/users/jessicatf/followers", + "following_url": "https://api.github.com/users/jessicatf/following{/other_user}", + "gists_url": "https://api.github.com/users/jessicatf/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jessicatf/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jessicatf/subscriptions", + "organizations_url": "https://api.github.com/users/jessicatf/orgs", + "repos_url": "https://api.github.com/users/jessicatf/repos", + "events_url": "https://api.github.com/users/jessicatf/events{/privacy}", + "received_events_url": "https://api.github.com/users/jessicatf/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-31T12:56:09Z", + "updated_at": "2021-09-03T12:30:44Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "6ce0d1cb1b06affbd7472a1a4061d0bc5805fd55", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/245/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/245/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/245/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/112efc0a1e0b215a5fb3d85c6041d05b4271622b", + "head": { + "label": "jessicatf:master", + "ref": "master", + "sha": "112efc0a1e0b215a5fb3d85c6041d05b4271622b", + "user": { + "login": "jessicatf", + "id": 71459967, + "node_id": "MDQ6VXNlcjcxNDU5OTY3", + "avatar_url": "https://avatars.githubusercontent.com/u/71459967?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jessicatf", + "html_url": "https://github.com/jessicatf", + "followers_url": "https://api.github.com/users/jessicatf/followers", + "following_url": "https://api.github.com/users/jessicatf/following{/other_user}", + "gists_url": "https://api.github.com/users/jessicatf/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jessicatf/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jessicatf/subscriptions", + "organizations_url": "https://api.github.com/users/jessicatf/orgs", + "repos_url": "https://api.github.com/users/jessicatf/repos", + "events_url": "https://api.github.com/users/jessicatf/events{/privacy}", + "received_events_url": "https://api.github.com/users/jessicatf/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398823628, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4MjM2Mjg=", + "name": "project-news-site", + "full_name": "jessicatf/project-news-site", + "private": false, + "owner": { + "login": "jessicatf", + "id": 71459967, + "node_id": "MDQ6VXNlcjcxNDU5OTY3", + "avatar_url": "https://avatars.githubusercontent.com/u/71459967?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jessicatf", + "html_url": "https://github.com/jessicatf", + "followers_url": "https://api.github.com/users/jessicatf/followers", + "following_url": "https://api.github.com/users/jessicatf/following{/other_user}", + "gists_url": "https://api.github.com/users/jessicatf/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jessicatf/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jessicatf/subscriptions", + "organizations_url": "https://api.github.com/users/jessicatf/orgs", + "repos_url": "https://api.github.com/users/jessicatf/repos", + "events_url": "https://api.github.com/users/jessicatf/events{/privacy}", + "received_events_url": "https://api.github.com/users/jessicatf/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/jessicatf/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jessicatf/project-news-site", + "forks_url": "https://api.github.com/repos/jessicatf/project-news-site/forks", + "keys_url": "https://api.github.com/repos/jessicatf/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jessicatf/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jessicatf/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/jessicatf/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/jessicatf/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/jessicatf/project-news-site/events", + "assignees_url": "https://api.github.com/repos/jessicatf/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/jessicatf/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/jessicatf/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/jessicatf/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jessicatf/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jessicatf/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jessicatf/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jessicatf/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jessicatf/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/jessicatf/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/jessicatf/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/jessicatf/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/jessicatf/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/jessicatf/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jessicatf/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jessicatf/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jessicatf/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jessicatf/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/jessicatf/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jessicatf/project-news-site/merges", + "archive_url": "https://api.github.com/repos/jessicatf/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jessicatf/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/jessicatf/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/jessicatf/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jessicatf/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jessicatf/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jessicatf/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/jessicatf/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/jessicatf/project-news-site/deployments", + "created_at": "2021-08-22T14:44:49Z", + "updated_at": "2021-09-03T12:30:46Z", + "pushed_at": "2021-09-03T12:30:42Z", + "git_url": "git://github.com/jessicatf/project-news-site.git", + "ssh_url": "git@github.com:jessicatf/project-news-site.git", + "clone_url": "https://github.com/jessicatf/project-news-site.git", + "svn_url": "https://github.com/jessicatf/project-news-site", + "homepage": null, + "size": 8340, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/245" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/245" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/245" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/245/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/245/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/245/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/112efc0a1e0b215a5fb3d85c6041d05b4271622b" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/244", + "id": 723339663, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIzMzM5NjYz", + "html_url": "https://github.com/Technigo/project-news-site/pull/244", + "diff_url": "https://github.com/Technigo/project-news-site/pull/244.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/244.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/244", + "number": 244, + "state": "open", + "locked": false, + "title": "Project 01 - News site", + "user": { + "login": "Alisebrink", + "id": 55890866, + "node_id": "MDQ6VXNlcjU1ODkwODY2", + "avatar_url": "https://avatars.githubusercontent.com/u/55890866?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Alisebrink", + "html_url": "https://github.com/Alisebrink", + "followers_url": "https://api.github.com/users/Alisebrink/followers", + "following_url": "https://api.github.com/users/Alisebrink/following{/other_user}", + "gists_url": "https://api.github.com/users/Alisebrink/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Alisebrink/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Alisebrink/subscriptions", + "organizations_url": "https://api.github.com/users/Alisebrink/orgs", + "repos_url": "https://api.github.com/users/Alisebrink/repos", + "events_url": "https://api.github.com/users/Alisebrink/events{/privacy}", + "received_events_url": "https://api.github.com/users/Alisebrink/received_events", + "type": "User", + "site_admin": false + }, + "body": "Here's my news site. I found it very satisfying to play around with grids and flexbox. I enjoy a bit of colour and some fun images and lingo. So here we go, the first proper project at Technigo :)\r\n\r\nHere's a link to my site on Netlify: https://alisebrink-project01-the-news-site.netlify.app/", + "created_at": "2021-08-31T12:46:55Z", + "updated_at": "2021-09-02T14:21:16Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "4bdb51d043a86cdc7909b3f14a5e35e3257ec47f", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/244/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/244/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/244/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/3f9019a33e4a105333e47cae0a96c45994c42db0", + "head": { + "label": "Alisebrink:master", + "ref": "master", + "sha": "3f9019a33e4a105333e47cae0a96c45994c42db0", + "user": { + "login": "Alisebrink", + "id": 55890866, + "node_id": "MDQ6VXNlcjU1ODkwODY2", + "avatar_url": "https://avatars.githubusercontent.com/u/55890866?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Alisebrink", + "html_url": "https://github.com/Alisebrink", + "followers_url": "https://api.github.com/users/Alisebrink/followers", + "following_url": "https://api.github.com/users/Alisebrink/following{/other_user}", + "gists_url": "https://api.github.com/users/Alisebrink/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Alisebrink/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Alisebrink/subscriptions", + "organizations_url": "https://api.github.com/users/Alisebrink/orgs", + "repos_url": "https://api.github.com/users/Alisebrink/repos", + "events_url": "https://api.github.com/users/Alisebrink/events{/privacy}", + "received_events_url": "https://api.github.com/users/Alisebrink/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398853025, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4NTMwMjU=", + "name": "project-news-site", + "full_name": "Alisebrink/project-news-site", + "private": false, + "owner": { + "login": "Alisebrink", + "id": 55890866, + "node_id": "MDQ6VXNlcjU1ODkwODY2", + "avatar_url": "https://avatars.githubusercontent.com/u/55890866?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Alisebrink", + "html_url": "https://github.com/Alisebrink", + "followers_url": "https://api.github.com/users/Alisebrink/followers", + "following_url": "https://api.github.com/users/Alisebrink/following{/other_user}", + "gists_url": "https://api.github.com/users/Alisebrink/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Alisebrink/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Alisebrink/subscriptions", + "organizations_url": "https://api.github.com/users/Alisebrink/orgs", + "repos_url": "https://api.github.com/users/Alisebrink/repos", + "events_url": "https://api.github.com/users/Alisebrink/events{/privacy}", + "received_events_url": "https://api.github.com/users/Alisebrink/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Alisebrink/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Alisebrink/project-news-site", + "forks_url": "https://api.github.com/repos/Alisebrink/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Alisebrink/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Alisebrink/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Alisebrink/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Alisebrink/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Alisebrink/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Alisebrink/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Alisebrink/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Alisebrink/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Alisebrink/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Alisebrink/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Alisebrink/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Alisebrink/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Alisebrink/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Alisebrink/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Alisebrink/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Alisebrink/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Alisebrink/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Alisebrink/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Alisebrink/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Alisebrink/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Alisebrink/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Alisebrink/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Alisebrink/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Alisebrink/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Alisebrink/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Alisebrink/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Alisebrink/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Alisebrink/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Alisebrink/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Alisebrink/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Alisebrink/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Alisebrink/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Alisebrink/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Alisebrink/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Alisebrink/project-news-site/deployments", + "created_at": "2021-08-22T16:59:38Z", + "updated_at": "2021-08-25T07:23:11Z", + "pushed_at": "2021-08-25T07:23:08Z", + "git_url": "git://github.com/Alisebrink/project-news-site.git", + "ssh_url": "git@github.com:Alisebrink/project-news-site.git", + "clone_url": "https://github.com/Alisebrink/project-news-site.git", + "svn_url": "https://github.com/Alisebrink/project-news-site", + "homepage": null, + "size": 8020, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/244" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/244" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/244" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/244/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/244/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/244/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/3f9019a33e4a105333e47cae0a96c45994c42db0" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/242", + "id": 723130560, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIzMTMwNTYw", + "html_url": "https://github.com/Technigo/project-news-site/pull/242", + "diff_url": "https://github.com/Technigo/project-news-site/pull/242.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/242.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/242", + "number": 242, + "state": "open", + "locked": false, + "title": "Week 2 - Project news site by Jenny", + "user": { + "login": "jenquach", + "id": 85080829, + "node_id": "MDQ6VXNlcjg1MDgwODI5", + "avatar_url": "https://avatars.githubusercontent.com/u/85080829?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenquach", + "html_url": "https://github.com/jenquach", + "followers_url": "https://api.github.com/users/jenquach/followers", + "following_url": "https://api.github.com/users/jenquach/following{/other_user}", + "gists_url": "https://api.github.com/users/jenquach/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenquach/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenquach/subscriptions", + "organizations_url": "https://api.github.com/users/jenquach/orgs", + "repos_url": "https://api.github.com/users/jenquach/repos", + "events_url": "https://api.github.com/users/jenquach/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenquach/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-31T08:14:50Z", + "updated_at": "2021-09-06T21:08:24Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "32a4dc06cce51340b1ae06d51ca35161de9726c1", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/242/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/242/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/242/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/3efb3fb50462c93a95033659244135b318e0cfa6", + "head": { + "label": "jenquach:master", + "ref": "master", + "sha": "3efb3fb50462c93a95033659244135b318e0cfa6", + "user": { + "login": "jenquach", + "id": 85080829, + "node_id": "MDQ6VXNlcjg1MDgwODI5", + "avatar_url": "https://avatars.githubusercontent.com/u/85080829?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenquach", + "html_url": "https://github.com/jenquach", + "followers_url": "https://api.github.com/users/jenquach/followers", + "following_url": "https://api.github.com/users/jenquach/following{/other_user}", + "gists_url": "https://api.github.com/users/jenquach/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenquach/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenquach/subscriptions", + "organizations_url": "https://api.github.com/users/jenquach/orgs", + "repos_url": "https://api.github.com/users/jenquach/repos", + "events_url": "https://api.github.com/users/jenquach/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenquach/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399732161, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTk3MzIxNjE=", + "name": "project-news-site", + "full_name": "jenquach/project-news-site", + "private": false, + "owner": { + "login": "jenquach", + "id": 85080829, + "node_id": "MDQ6VXNlcjg1MDgwODI5", + "avatar_url": "https://avatars.githubusercontent.com/u/85080829?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jenquach", + "html_url": "https://github.com/jenquach", + "followers_url": "https://api.github.com/users/jenquach/followers", + "following_url": "https://api.github.com/users/jenquach/following{/other_user}", + "gists_url": "https://api.github.com/users/jenquach/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jenquach/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jenquach/subscriptions", + "organizations_url": "https://api.github.com/users/jenquach/orgs", + "repos_url": "https://api.github.com/users/jenquach/repos", + "events_url": "https://api.github.com/users/jenquach/events{/privacy}", + "received_events_url": "https://api.github.com/users/jenquach/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/jenquach/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jenquach/project-news-site", + "forks_url": "https://api.github.com/repos/jenquach/project-news-site/forks", + "keys_url": "https://api.github.com/repos/jenquach/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jenquach/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jenquach/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/jenquach/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/jenquach/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/jenquach/project-news-site/events", + "assignees_url": "https://api.github.com/repos/jenquach/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/jenquach/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/jenquach/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/jenquach/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jenquach/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jenquach/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jenquach/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jenquach/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jenquach/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/jenquach/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/jenquach/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/jenquach/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/jenquach/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/jenquach/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jenquach/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jenquach/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jenquach/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jenquach/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/jenquach/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jenquach/project-news-site/merges", + "archive_url": "https://api.github.com/repos/jenquach/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jenquach/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/jenquach/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/jenquach/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jenquach/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jenquach/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jenquach/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/jenquach/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/jenquach/project-news-site/deployments", + "created_at": "2021-08-25T07:39:54Z", + "updated_at": "2021-09-06T21:08:26Z", + "pushed_at": "2021-09-06T21:08:23Z", + "git_url": "git://github.com/jenquach/project-news-site.git", + "ssh_url": "git@github.com:jenquach/project-news-site.git", + "clone_url": "https://github.com/jenquach/project-news-site.git", + "svn_url": "https://github.com/jenquach/project-news-site", + "homepage": null, + "size": 43249, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/242" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/242" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/242" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/242/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/242/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/242/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/3efb3fb50462c93a95033659244135b318e0cfa6" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/241", + "id": 723118745, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIzMTE4NzQ1", + "html_url": "https://github.com/Technigo/project-news-site/pull/241", + "diff_url": "https://github.com/Technigo/project-news-site/pull/241.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/241.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/241", + "number": 241, + "state": "open", + "locked": false, + "title": "Review news site Lena", + "user": { + "login": "lenisili", + "id": 84474447, + "node_id": "MDQ6VXNlcjg0NDc0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/84474447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lenisili", + "html_url": "https://github.com/lenisili", + "followers_url": "https://api.github.com/users/lenisili/followers", + "following_url": "https://api.github.com/users/lenisili/following{/other_user}", + "gists_url": "https://api.github.com/users/lenisili/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lenisili/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lenisili/subscriptions", + "organizations_url": "https://api.github.com/users/lenisili/orgs", + "repos_url": "https://api.github.com/users/lenisili/repos", + "events_url": "https://api.github.com/users/lenisili/events{/privacy}", + "received_events_url": "https://api.github.com/users/lenisili/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-31T08:00:38Z", + "updated_at": "2021-08-31T18:57:08Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "42b517bfb58c7bb80f80f69cc5c5a26f3c83394c", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/241/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/241/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/241/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/16546d87d867186e9087d10d2e2b167ad80ac815", + "head": { + "label": "lenisili:master", + "ref": "master", + "sha": "16546d87d867186e9087d10d2e2b167ad80ac815", + "user": { + "login": "lenisili", + "id": 84474447, + "node_id": "MDQ6VXNlcjg0NDc0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/84474447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lenisili", + "html_url": "https://github.com/lenisili", + "followers_url": "https://api.github.com/users/lenisili/followers", + "following_url": "https://api.github.com/users/lenisili/following{/other_user}", + "gists_url": "https://api.github.com/users/lenisili/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lenisili/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lenisili/subscriptions", + "organizations_url": "https://api.github.com/users/lenisili/orgs", + "repos_url": "https://api.github.com/users/lenisili/repos", + "events_url": "https://api.github.com/users/lenisili/events{/privacy}", + "received_events_url": "https://api.github.com/users/lenisili/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398832447, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4MzI0NDc=", + "name": "project-news-site", + "full_name": "lenisili/project-news-site", + "private": false, + "owner": { + "login": "lenisili", + "id": 84474447, + "node_id": "MDQ6VXNlcjg0NDc0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/84474447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lenisili", + "html_url": "https://github.com/lenisili", + "followers_url": "https://api.github.com/users/lenisili/followers", + "following_url": "https://api.github.com/users/lenisili/following{/other_user}", + "gists_url": "https://api.github.com/users/lenisili/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lenisili/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lenisili/subscriptions", + "organizations_url": "https://api.github.com/users/lenisili/orgs", + "repos_url": "https://api.github.com/users/lenisili/repos", + "events_url": "https://api.github.com/users/lenisili/events{/privacy}", + "received_events_url": "https://api.github.com/users/lenisili/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/lenisili/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/lenisili/project-news-site", + "forks_url": "https://api.github.com/repos/lenisili/project-news-site/forks", + "keys_url": "https://api.github.com/repos/lenisili/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/lenisili/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/lenisili/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/lenisili/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/lenisili/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/lenisili/project-news-site/events", + "assignees_url": "https://api.github.com/repos/lenisili/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/lenisili/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/lenisili/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/lenisili/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/lenisili/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/lenisili/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/lenisili/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/lenisili/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/lenisili/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/lenisili/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/lenisili/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/lenisili/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/lenisili/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/lenisili/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/lenisili/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/lenisili/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/lenisili/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/lenisili/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/lenisili/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/lenisili/project-news-site/merges", + "archive_url": "https://api.github.com/repos/lenisili/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/lenisili/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/lenisili/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/lenisili/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/lenisili/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/lenisili/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/lenisili/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/lenisili/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/lenisili/project-news-site/deployments", + "created_at": "2021-08-22T15:23:34Z", + "updated_at": "2021-08-29T19:50:30Z", + "pushed_at": "2021-08-29T19:50:28Z", + "git_url": "git://github.com/lenisili/project-news-site.git", + "ssh_url": "git@github.com:lenisili/project-news-site.git", + "clone_url": "https://github.com/lenisili/project-news-site.git", + "svn_url": "https://github.com/lenisili/project-news-site", + "homepage": null, + "size": 19335, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/241" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/241" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/241" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/241/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/241/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/241/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/16546d87d867186e9087d10d2e2b167ad80ac815" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/240", + "id": 723105696, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIzMTA1Njk2", + "html_url": "https://github.com/Technigo/project-news-site/pull/240", + "diff_url": "https://github.com/Technigo/project-news-site/pull/240.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/240.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/240", + "number": 240, + "state": "open", + "locked": false, + "title": "project-new-site by Madelene", + "user": { + "login": "MT-dotse", + "id": 81696841, + "node_id": "MDQ6VXNlcjgxNjk2ODQx", + "avatar_url": "https://avatars.githubusercontent.com/u/81696841?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MT-dotse", + "html_url": "https://github.com/MT-dotse", + "followers_url": "https://api.github.com/users/MT-dotse/followers", + "following_url": "https://api.github.com/users/MT-dotse/following{/other_user}", + "gists_url": "https://api.github.com/users/MT-dotse/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MT-dotse/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MT-dotse/subscriptions", + "organizations_url": "https://api.github.com/users/MT-dotse/orgs", + "repos_url": "https://api.github.com/users/MT-dotse/repos", + "events_url": "https://api.github.com/users/MT-dotse/events{/privacy}", + "received_events_url": "https://api.github.com/users/MT-dotse/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-31T07:41:20Z", + "updated_at": "2021-09-14T16:06:30Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "2e307a9d356f44431c1316e2b8724dab06a1f608", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/240/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/240/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/240/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/5f475fe3d15f580a404e309f4a5f42ed3698b5a1", + "head": { + "label": "MT-dotse:master", + "ref": "master", + "sha": "5f475fe3d15f580a404e309f4a5f42ed3698b5a1", + "user": { + "login": "MT-dotse", + "id": 81696841, + "node_id": "MDQ6VXNlcjgxNjk2ODQx", + "avatar_url": "https://avatars.githubusercontent.com/u/81696841?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MT-dotse", + "html_url": "https://github.com/MT-dotse", + "followers_url": "https://api.github.com/users/MT-dotse/followers", + "following_url": "https://api.github.com/users/MT-dotse/following{/other_user}", + "gists_url": "https://api.github.com/users/MT-dotse/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MT-dotse/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MT-dotse/subscriptions", + "organizations_url": "https://api.github.com/users/MT-dotse/orgs", + "repos_url": "https://api.github.com/users/MT-dotse/repos", + "events_url": "https://api.github.com/users/MT-dotse/events{/privacy}", + "received_events_url": "https://api.github.com/users/MT-dotse/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398818590, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4MTg1OTA=", + "name": "project-news-site", + "full_name": "MT-dotse/project-news-site", + "private": false, + "owner": { + "login": "MT-dotse", + "id": 81696841, + "node_id": "MDQ6VXNlcjgxNjk2ODQx", + "avatar_url": "https://avatars.githubusercontent.com/u/81696841?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MT-dotse", + "html_url": "https://github.com/MT-dotse", + "followers_url": "https://api.github.com/users/MT-dotse/followers", + "following_url": "https://api.github.com/users/MT-dotse/following{/other_user}", + "gists_url": "https://api.github.com/users/MT-dotse/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MT-dotse/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MT-dotse/subscriptions", + "organizations_url": "https://api.github.com/users/MT-dotse/orgs", + "repos_url": "https://api.github.com/users/MT-dotse/repos", + "events_url": "https://api.github.com/users/MT-dotse/events{/privacy}", + "received_events_url": "https://api.github.com/users/MT-dotse/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/MT-dotse/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/MT-dotse/project-news-site", + "forks_url": "https://api.github.com/repos/MT-dotse/project-news-site/forks", + "keys_url": "https://api.github.com/repos/MT-dotse/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/MT-dotse/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/MT-dotse/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/MT-dotse/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/MT-dotse/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/MT-dotse/project-news-site/events", + "assignees_url": "https://api.github.com/repos/MT-dotse/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/MT-dotse/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/MT-dotse/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/MT-dotse/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/MT-dotse/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/MT-dotse/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/MT-dotse/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/MT-dotse/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/MT-dotse/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/MT-dotse/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/MT-dotse/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/MT-dotse/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/MT-dotse/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/MT-dotse/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/MT-dotse/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/MT-dotse/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/MT-dotse/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/MT-dotse/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/MT-dotse/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/MT-dotse/project-news-site/merges", + "archive_url": "https://api.github.com/repos/MT-dotse/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/MT-dotse/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/MT-dotse/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/MT-dotse/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/MT-dotse/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/MT-dotse/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/MT-dotse/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/MT-dotse/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/MT-dotse/project-news-site/deployments", + "created_at": "2021-08-22T14:22:43Z", + "updated_at": "2021-09-14T16:06:32Z", + "pushed_at": "2021-09-14T16:06:28Z", + "git_url": "git://github.com/MT-dotse/project-news-site.git", + "ssh_url": "git@github.com:MT-dotse/project-news-site.git", + "clone_url": "https://github.com/MT-dotse/project-news-site.git", + "svn_url": "https://github.com/MT-dotse/project-news-site", + "homepage": null, + "size": 1130, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/240" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/240" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/240" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/240/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/240/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/240/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/5f475fe3d15f580a404e309f4a5f42ed3698b5a1" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/238", + "id": 722809534, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyODA5NTM0", + "html_url": "https://github.com/Technigo/project-news-site/pull/238", + "diff_url": "https://github.com/Technigo/project-news-site/pull/238.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/238.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/238", + "number": 238, + "state": "open", + "locked": false, + "title": "Project news-site", + "user": { + "login": "Svempolin", + "id": 85078175, + "node_id": "MDQ6VXNlcjg1MDc4MTc1", + "avatar_url": "https://avatars.githubusercontent.com/u/85078175?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Svempolin", + "html_url": "https://github.com/Svempolin", + "followers_url": "https://api.github.com/users/Svempolin/followers", + "following_url": "https://api.github.com/users/Svempolin/following{/other_user}", + "gists_url": "https://api.github.com/users/Svempolin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Svempolin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Svempolin/subscriptions", + "organizations_url": "https://api.github.com/users/Svempolin/orgs", + "repos_url": "https://api.github.com/users/Svempolin/repos", + "events_url": "https://api.github.com/users/Svempolin/events{/privacy}", + "received_events_url": "https://api.github.com/users/Svempolin/received_events", + "type": "User", + "site_admin": false + }, + "body": "This i my first code ever.. so I'm happy that it works an proud that I managed to do it :) \r\nAnd I really feel that this is just the start. \r\n", + "created_at": "2021-08-30T20:49:13Z", + "updated_at": "2021-09-17T11:39:41Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "8a7f8c9fbdbfabe7d9a68bf4cbcc7bf84f3e4f36", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/238/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/238/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/238/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/61cecc3cd43d7cddbf8e5fcae6d2be2a82fac7d3", + "head": { + "label": "Svempolin:master", + "ref": "master", + "sha": "61cecc3cd43d7cddbf8e5fcae6d2be2a82fac7d3", + "user": { + "login": "Svempolin", + "id": 85078175, + "node_id": "MDQ6VXNlcjg1MDc4MTc1", + "avatar_url": "https://avatars.githubusercontent.com/u/85078175?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Svempolin", + "html_url": "https://github.com/Svempolin", + "followers_url": "https://api.github.com/users/Svempolin/followers", + "following_url": "https://api.github.com/users/Svempolin/following{/other_user}", + "gists_url": "https://api.github.com/users/Svempolin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Svempolin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Svempolin/subscriptions", + "organizations_url": "https://api.github.com/users/Svempolin/orgs", + "repos_url": "https://api.github.com/users/Svempolin/repos", + "events_url": "https://api.github.com/users/Svempolin/events{/privacy}", + "received_events_url": "https://api.github.com/users/Svempolin/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399056227, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwNTYyMjc=", + "name": "project-news-site", + "full_name": "Svempolin/project-news-site", + "private": false, + "owner": { + "login": "Svempolin", + "id": 85078175, + "node_id": "MDQ6VXNlcjg1MDc4MTc1", + "avatar_url": "https://avatars.githubusercontent.com/u/85078175?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Svempolin", + "html_url": "https://github.com/Svempolin", + "followers_url": "https://api.github.com/users/Svempolin/followers", + "following_url": "https://api.github.com/users/Svempolin/following{/other_user}", + "gists_url": "https://api.github.com/users/Svempolin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Svempolin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Svempolin/subscriptions", + "organizations_url": "https://api.github.com/users/Svempolin/orgs", + "repos_url": "https://api.github.com/users/Svempolin/repos", + "events_url": "https://api.github.com/users/Svempolin/events{/privacy}", + "received_events_url": "https://api.github.com/users/Svempolin/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Svempolin/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Svempolin/project-news-site", + "forks_url": "https://api.github.com/repos/Svempolin/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Svempolin/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Svempolin/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Svempolin/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Svempolin/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Svempolin/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Svempolin/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Svempolin/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Svempolin/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Svempolin/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Svempolin/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Svempolin/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Svempolin/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Svempolin/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Svempolin/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Svempolin/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Svempolin/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Svempolin/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Svempolin/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Svempolin/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Svempolin/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Svempolin/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Svempolin/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Svempolin/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Svempolin/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Svempolin/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Svempolin/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Svempolin/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Svempolin/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Svempolin/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Svempolin/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Svempolin/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Svempolin/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Svempolin/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Svempolin/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Svempolin/project-news-site/deployments", + "created_at": "2021-08-23T10:09:01Z", + "updated_at": "2021-09-17T11:39:42Z", + "pushed_at": "2021-09-17T11:39:39Z", + "git_url": "git://github.com/Svempolin/project-news-site.git", + "ssh_url": "git@github.com:Svempolin/project-news-site.git", + "clone_url": "https://github.com/Svempolin/project-news-site.git", + "svn_url": "https://github.com/Svempolin/project-news-site", + "homepage": null, + "size": 1573, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/238" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/238" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/238" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/238/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/238/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/238/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/61cecc3cd43d7cddbf8e5fcae6d2be2a82fac7d3" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/237", + "id": 722645335, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyNjQ1MzM1", + "html_url": "https://github.com/Technigo/project-news-site/pull/237", + "diff_url": "https://github.com/Technigo/project-news-site/pull/237.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/237.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/237", + "number": 237, + "state": "open", + "locked": false, + "title": "Mariuchi Queiros - News site ", + "user": { + "login": "Namumariuchi", + "id": 59955233, + "node_id": "MDQ6VXNlcjU5OTU1MjMz", + "avatar_url": "https://avatars.githubusercontent.com/u/59955233?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Namumariuchi", + "html_url": "https://github.com/Namumariuchi", + "followers_url": "https://api.github.com/users/Namumariuchi/followers", + "following_url": "https://api.github.com/users/Namumariuchi/following{/other_user}", + "gists_url": "https://api.github.com/users/Namumariuchi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Namumariuchi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Namumariuchi/subscriptions", + "organizations_url": "https://api.github.com/users/Namumariuchi/orgs", + "repos_url": "https://api.github.com/users/Namumariuchi/repos", + "events_url": "https://api.github.com/users/Namumariuchi/events{/privacy}", + "received_events_url": "https://api.github.com/users/Namumariuchi/received_events", + "type": "User", + "site_admin": false + }, + "body": "Link to my deployed project: https://suspicious-liskov-24ed7f.netlify.app", + "created_at": "2021-08-30T16:38:01Z", + "updated_at": "2021-09-01T13:06:51Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "9e59cdac6e2bcaebb653f562455cc15681c7dff0", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/237/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/237/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/237/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/6f5d9391c789c67a2bce284bd8f3ad94ffcfd9d7", + "head": { + "label": "Namumariuchi:master", + "ref": "master", + "sha": "6f5d9391c789c67a2bce284bd8f3ad94ffcfd9d7", + "user": { + "login": "Namumariuchi", + "id": 59955233, + "node_id": "MDQ6VXNlcjU5OTU1MjMz", + "avatar_url": "https://avatars.githubusercontent.com/u/59955233?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Namumariuchi", + "html_url": "https://github.com/Namumariuchi", + "followers_url": "https://api.github.com/users/Namumariuchi/followers", + "following_url": "https://api.github.com/users/Namumariuchi/following{/other_user}", + "gists_url": "https://api.github.com/users/Namumariuchi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Namumariuchi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Namumariuchi/subscriptions", + "organizations_url": "https://api.github.com/users/Namumariuchi/orgs", + "repos_url": "https://api.github.com/users/Namumariuchi/repos", + "events_url": "https://api.github.com/users/Namumariuchi/events{/privacy}", + "received_events_url": "https://api.github.com/users/Namumariuchi/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399181322, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkxODEzMjI=", + "name": "project-news-site", + "full_name": "Namumariuchi/project-news-site", + "private": false, + "owner": { + "login": "Namumariuchi", + "id": 59955233, + "node_id": "MDQ6VXNlcjU5OTU1MjMz", + "avatar_url": "https://avatars.githubusercontent.com/u/59955233?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Namumariuchi", + "html_url": "https://github.com/Namumariuchi", + "followers_url": "https://api.github.com/users/Namumariuchi/followers", + "following_url": "https://api.github.com/users/Namumariuchi/following{/other_user}", + "gists_url": "https://api.github.com/users/Namumariuchi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Namumariuchi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Namumariuchi/subscriptions", + "organizations_url": "https://api.github.com/users/Namumariuchi/orgs", + "repos_url": "https://api.github.com/users/Namumariuchi/repos", + "events_url": "https://api.github.com/users/Namumariuchi/events{/privacy}", + "received_events_url": "https://api.github.com/users/Namumariuchi/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Namumariuchi/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Namumariuchi/project-news-site", + "forks_url": "https://api.github.com/repos/Namumariuchi/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Namumariuchi/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Namumariuchi/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Namumariuchi/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Namumariuchi/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Namumariuchi/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Namumariuchi/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Namumariuchi/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Namumariuchi/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Namumariuchi/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Namumariuchi/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Namumariuchi/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Namumariuchi/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Namumariuchi/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Namumariuchi/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Namumariuchi/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Namumariuchi/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Namumariuchi/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Namumariuchi/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Namumariuchi/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Namumariuchi/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Namumariuchi/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Namumariuchi/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Namumariuchi/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Namumariuchi/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Namumariuchi/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Namumariuchi/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Namumariuchi/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Namumariuchi/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Namumariuchi/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Namumariuchi/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Namumariuchi/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Namumariuchi/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Namumariuchi/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Namumariuchi/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Namumariuchi/project-news-site/deployments", + "created_at": "2021-08-23T16:52:34Z", + "updated_at": "2021-08-28T17:14:53Z", + "pushed_at": "2021-08-28T17:14:50Z", + "git_url": "git://github.com/Namumariuchi/project-news-site.git", + "ssh_url": "git@github.com:Namumariuchi/project-news-site.git", + "clone_url": "https://github.com/Namumariuchi/project-news-site.git", + "svn_url": "https://github.com/Namumariuchi/project-news-site", + "homepage": null, + "size": 3195, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/237" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/237" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/237" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/237/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/237/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/237/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/6f5d9391c789c67a2bce284bd8f3ad94ffcfd9d7" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/236", + "id": 722581875, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyNTgxODc1", + "html_url": "https://github.com/Technigo/project-news-site/pull/236", + "diff_url": "https://github.com/Technigo/project-news-site/pull/236.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/236.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/236", + "number": 236, + "state": "open", + "locked": false, + "title": "My news site", + "user": { + "login": "madeleinesvensson", + "id": 56533906, + "node_id": "MDQ6VXNlcjU2NTMzOTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/56533906?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/madeleinesvensson", + "html_url": "https://github.com/madeleinesvensson", + "followers_url": "https://api.github.com/users/madeleinesvensson/followers", + "following_url": "https://api.github.com/users/madeleinesvensson/following{/other_user}", + "gists_url": "https://api.github.com/users/madeleinesvensson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/madeleinesvensson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/madeleinesvensson/subscriptions", + "organizations_url": "https://api.github.com/users/madeleinesvensson/orgs", + "repos_url": "https://api.github.com/users/madeleinesvensson/repos", + "events_url": "https://api.github.com/users/madeleinesvensson/events{/privacy}", + "received_events_url": "https://api.github.com/users/madeleinesvensson/received_events", + "type": "User", + "site_admin": false + }, + "body": "My project", + "created_at": "2021-08-30T15:16:09Z", + "updated_at": "2021-09-18T15:22:23Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "bd17c1042b0ca288e6acb555a0cd34b4df8b638f", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/236/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/236/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/236/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/35997072f8a931363bf5962c840e7fcd6088f1ef", + "head": { + "label": "madeleinesvensson:master", + "ref": "master", + "sha": "35997072f8a931363bf5962c840e7fcd6088f1ef", + "user": { + "login": "madeleinesvensson", + "id": 56533906, + "node_id": "MDQ6VXNlcjU2NTMzOTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/56533906?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/madeleinesvensson", + "html_url": "https://github.com/madeleinesvensson", + "followers_url": "https://api.github.com/users/madeleinesvensson/followers", + "following_url": "https://api.github.com/users/madeleinesvensson/following{/other_user}", + "gists_url": "https://api.github.com/users/madeleinesvensson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/madeleinesvensson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/madeleinesvensson/subscriptions", + "organizations_url": "https://api.github.com/users/madeleinesvensson/orgs", + "repos_url": "https://api.github.com/users/madeleinesvensson/repos", + "events_url": "https://api.github.com/users/madeleinesvensson/events{/privacy}", + "received_events_url": "https://api.github.com/users/madeleinesvensson/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399204858, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkyMDQ4NTg=", + "name": "project-news-site", + "full_name": "madeleinesvensson/project-news-site", + "private": false, + "owner": { + "login": "madeleinesvensson", + "id": 56533906, + "node_id": "MDQ6VXNlcjU2NTMzOTA2", + "avatar_url": "https://avatars.githubusercontent.com/u/56533906?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/madeleinesvensson", + "html_url": "https://github.com/madeleinesvensson", + "followers_url": "https://api.github.com/users/madeleinesvensson/followers", + "following_url": "https://api.github.com/users/madeleinesvensson/following{/other_user}", + "gists_url": "https://api.github.com/users/madeleinesvensson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/madeleinesvensson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/madeleinesvensson/subscriptions", + "organizations_url": "https://api.github.com/users/madeleinesvensson/orgs", + "repos_url": "https://api.github.com/users/madeleinesvensson/repos", + "events_url": "https://api.github.com/users/madeleinesvensson/events{/privacy}", + "received_events_url": "https://api.github.com/users/madeleinesvensson/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/madeleinesvensson/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/madeleinesvensson/project-news-site", + "forks_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/forks", + "keys_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/events", + "assignees_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/merges", + "archive_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/deployments", + "created_at": "2021-08-23T18:10:22Z", + "updated_at": "2021-09-18T15:22:25Z", + "pushed_at": "2021-09-18T15:22:22Z", + "git_url": "git://github.com/madeleinesvensson/project-news-site.git", + "ssh_url": "git@github.com:madeleinesvensson/project-news-site.git", + "clone_url": "https://github.com/madeleinesvensson/project-news-site.git", + "svn_url": "https://github.com/madeleinesvensson/project-news-site", + "homepage": null, + "size": 819, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/236" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/236" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/236" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/236/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/236/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/236/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/35997072f8a931363bf5962c840e7fcd6088f1ef" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/235", + "id": 722508306, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyNTA4MzA2", + "html_url": "https://github.com/Technigo/project-news-site/pull/235", + "diff_url": "https://github.com/Technigo/project-news-site/pull/235.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/235.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/235", + "number": 235, + "state": "open", + "locked": false, + "title": "Technigo/project-news-site/a1exa", + "user": { + "login": "A1eksa", + "id": 80787783, + "node_id": "MDQ6VXNlcjgwNzg3Nzgz", + "avatar_url": "https://avatars.githubusercontent.com/u/80787783?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/A1eksa", + "html_url": "https://github.com/A1eksa", + "followers_url": "https://api.github.com/users/A1eksa/followers", + "following_url": "https://api.github.com/users/A1eksa/following{/other_user}", + "gists_url": "https://api.github.com/users/A1eksa/gists{/gist_id}", + "starred_url": "https://api.github.com/users/A1eksa/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/A1eksa/subscriptions", + "organizations_url": "https://api.github.com/users/A1eksa/orgs", + "repos_url": "https://api.github.com/users/A1eksa/repos", + "events_url": "https://api.github.com/users/A1eksa/events{/privacy}", + "received_events_url": "https://api.github.com/users/A1eksa/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-30T13:47:45Z", + "updated_at": "2021-09-01T15:56:45Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "a9c24e11fe061bff2f538a7ec1813d92340d2612", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/235/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/235/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/235/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/fca4742f59f0139593758df0963bdcb375cb53c0", + "head": { + "label": "A1eksa:master", + "ref": "master", + "sha": "fca4742f59f0139593758df0963bdcb375cb53c0", + "user": { + "login": "A1eksa", + "id": 80787783, + "node_id": "MDQ6VXNlcjgwNzg3Nzgz", + "avatar_url": "https://avatars.githubusercontent.com/u/80787783?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/A1eksa", + "html_url": "https://github.com/A1eksa", + "followers_url": "https://api.github.com/users/A1eksa/followers", + "following_url": "https://api.github.com/users/A1eksa/following{/other_user}", + "gists_url": "https://api.github.com/users/A1eksa/gists{/gist_id}", + "starred_url": "https://api.github.com/users/A1eksa/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/A1eksa/subscriptions", + "organizations_url": "https://api.github.com/users/A1eksa/orgs", + "repos_url": "https://api.github.com/users/A1eksa/repos", + "events_url": "https://api.github.com/users/A1eksa/events{/privacy}", + "received_events_url": "https://api.github.com/users/A1eksa/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399089017, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwODkwMTc=", + "name": "project-news-site", + "full_name": "A1eksa/project-news-site", + "private": false, + "owner": { + "login": "A1eksa", + "id": 80787783, + "node_id": "MDQ6VXNlcjgwNzg3Nzgz", + "avatar_url": "https://avatars.githubusercontent.com/u/80787783?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/A1eksa", + "html_url": "https://github.com/A1eksa", + "followers_url": "https://api.github.com/users/A1eksa/followers", + "following_url": "https://api.github.com/users/A1eksa/following{/other_user}", + "gists_url": "https://api.github.com/users/A1eksa/gists{/gist_id}", + "starred_url": "https://api.github.com/users/A1eksa/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/A1eksa/subscriptions", + "organizations_url": "https://api.github.com/users/A1eksa/orgs", + "repos_url": "https://api.github.com/users/A1eksa/repos", + "events_url": "https://api.github.com/users/A1eksa/events{/privacy}", + "received_events_url": "https://api.github.com/users/A1eksa/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/A1eksa/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/A1eksa/project-news-site", + "forks_url": "https://api.github.com/repos/A1eksa/project-news-site/forks", + "keys_url": "https://api.github.com/repos/A1eksa/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/A1eksa/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/A1eksa/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/A1eksa/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/A1eksa/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/A1eksa/project-news-site/events", + "assignees_url": "https://api.github.com/repos/A1eksa/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/A1eksa/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/A1eksa/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/A1eksa/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/A1eksa/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/A1eksa/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/A1eksa/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/A1eksa/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/A1eksa/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/A1eksa/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/A1eksa/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/A1eksa/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/A1eksa/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/A1eksa/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/A1eksa/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/A1eksa/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/A1eksa/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/A1eksa/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/A1eksa/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/A1eksa/project-news-site/merges", + "archive_url": "https://api.github.com/repos/A1eksa/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/A1eksa/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/A1eksa/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/A1eksa/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/A1eksa/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/A1eksa/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/A1eksa/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/A1eksa/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/A1eksa/project-news-site/deployments", + "created_at": "2021-08-23T12:06:06Z", + "updated_at": "2021-08-29T21:19:37Z", + "pushed_at": "2021-08-29T21:19:34Z", + "git_url": "git://github.com/A1eksa/project-news-site.git", + "ssh_url": "git@github.com:A1eksa/project-news-site.git", + "clone_url": "https://github.com/A1eksa/project-news-site.git", + "svn_url": "https://github.com/A1eksa/project-news-site", + "homepage": null, + "size": 3793, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/235" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/235" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/235" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/235/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/235/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/235/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/fca4742f59f0139593758df0963bdcb375cb53c0" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/234", + "id": 722334138, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMzM0MTM4", + "html_url": "https://github.com/Technigo/project-news-site/pull/234", + "diff_url": "https://github.com/Technigo/project-news-site/pull/234.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/234.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/234", + "number": 234, + "state": "open", + "locked": false, + "title": "Project news site ", + "user": { + "login": "Idautterstrom", + "id": 80784577, + "node_id": "MDQ6VXNlcjgwNzg0NTc3", + "avatar_url": "https://avatars.githubusercontent.com/u/80784577?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Idautterstrom", + "html_url": "https://github.com/Idautterstrom", + "followers_url": "https://api.github.com/users/Idautterstrom/followers", + "following_url": "https://api.github.com/users/Idautterstrom/following{/other_user}", + "gists_url": "https://api.github.com/users/Idautterstrom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Idautterstrom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Idautterstrom/subscriptions", + "organizations_url": "https://api.github.com/users/Idautterstrom/orgs", + "repos_url": "https://api.github.com/users/Idautterstrom/repos", + "events_url": "https://api.github.com/users/Idautterstrom/events{/privacy}", + "received_events_url": "https://api.github.com/users/Idautterstrom/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-30T09:47:48Z", + "updated_at": "2021-09-09T17:48:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "81c5d222395b507879f4440fdc6a2476dd6474a7", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/234/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/234/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/234/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/8997e91f7faae687aab8d642d88b8b0bd846ff87", + "head": { + "label": "Idautterstrom:master", + "ref": "master", + "sha": "8997e91f7faae687aab8d642d88b8b0bd846ff87", + "user": { + "login": "Idautterstrom", + "id": 80784577, + "node_id": "MDQ6VXNlcjgwNzg0NTc3", + "avatar_url": "https://avatars.githubusercontent.com/u/80784577?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Idautterstrom", + "html_url": "https://github.com/Idautterstrom", + "followers_url": "https://api.github.com/users/Idautterstrom/followers", + "following_url": "https://api.github.com/users/Idautterstrom/following{/other_user}", + "gists_url": "https://api.github.com/users/Idautterstrom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Idautterstrom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Idautterstrom/subscriptions", + "organizations_url": "https://api.github.com/users/Idautterstrom/orgs", + "repos_url": "https://api.github.com/users/Idautterstrom/repos", + "events_url": "https://api.github.com/users/Idautterstrom/events{/privacy}", + "received_events_url": "https://api.github.com/users/Idautterstrom/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399090000, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwOTAwMDA=", + "name": "project-news-site", + "full_name": "Idautterstrom/project-news-site", + "private": false, + "owner": { + "login": "Idautterstrom", + "id": 80784577, + "node_id": "MDQ6VXNlcjgwNzg0NTc3", + "avatar_url": "https://avatars.githubusercontent.com/u/80784577?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Idautterstrom", + "html_url": "https://github.com/Idautterstrom", + "followers_url": "https://api.github.com/users/Idautterstrom/followers", + "following_url": "https://api.github.com/users/Idautterstrom/following{/other_user}", + "gists_url": "https://api.github.com/users/Idautterstrom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Idautterstrom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Idautterstrom/subscriptions", + "organizations_url": "https://api.github.com/users/Idautterstrom/orgs", + "repos_url": "https://api.github.com/users/Idautterstrom/repos", + "events_url": "https://api.github.com/users/Idautterstrom/events{/privacy}", + "received_events_url": "https://api.github.com/users/Idautterstrom/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Idautterstrom/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Idautterstrom/project-news-site", + "forks_url": "https://api.github.com/repos/Idautterstrom/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Idautterstrom/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Idautterstrom/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Idautterstrom/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Idautterstrom/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Idautterstrom/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Idautterstrom/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Idautterstrom/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Idautterstrom/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Idautterstrom/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Idautterstrom/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Idautterstrom/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Idautterstrom/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Idautterstrom/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Idautterstrom/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Idautterstrom/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Idautterstrom/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Idautterstrom/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Idautterstrom/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Idautterstrom/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Idautterstrom/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Idautterstrom/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Idautterstrom/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Idautterstrom/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Idautterstrom/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Idautterstrom/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Idautterstrom/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Idautterstrom/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Idautterstrom/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Idautterstrom/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Idautterstrom/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Idautterstrom/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Idautterstrom/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Idautterstrom/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Idautterstrom/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Idautterstrom/project-news-site/deployments", + "created_at": "2021-08-23T12:08:44Z", + "updated_at": "2021-09-09T17:48:50Z", + "pushed_at": "2021-09-09T17:48:47Z", + "git_url": "git://github.com/Idautterstrom/project-news-site.git", + "ssh_url": "git@github.com:Idautterstrom/project-news-site.git", + "clone_url": "https://github.com/Idautterstrom/project-news-site.git", + "svn_url": "https://github.com/Idautterstrom/project-news-site", + "homepage": null, + "size": 776, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/234" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/234" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/234" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/234/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/234/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/234/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/8997e91f7faae687aab8d642d88b8b0bd846ff87" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/233", + "id": 722209874, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMjA5ODc0", + "html_url": "https://github.com/Technigo/project-news-site/pull/233", + "diff_url": "https://github.com/Technigo/project-news-site/pull/233.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/233.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/233", + "number": 233, + "state": "open", + "locked": false, + "title": "Nothing but News a project for week 2 at Technigo by Jakob Lindström", + "user": { + "login": "jakobxlindstrom", + "id": 81704544, + "node_id": "MDQ6VXNlcjgxNzA0NTQ0", + "avatar_url": "https://avatars.githubusercontent.com/u/81704544?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jakobxlindstrom", + "html_url": "https://github.com/jakobxlindstrom", + "followers_url": "https://api.github.com/users/jakobxlindstrom/followers", + "following_url": "https://api.github.com/users/jakobxlindstrom/following{/other_user}", + "gists_url": "https://api.github.com/users/jakobxlindstrom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakobxlindstrom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakobxlindstrom/subscriptions", + "organizations_url": "https://api.github.com/users/jakobxlindstrom/orgs", + "repos_url": "https://api.github.com/users/jakobxlindstrom/repos", + "events_url": "https://api.github.com/users/jakobxlindstrom/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakobxlindstrom/received_events", + "type": "User", + "site_admin": false + }, + "body": "Im super proud of the whole process from nothing to pushing through github and all that has come with it. Im very proud of that my page is responsive through flexbox more so than media queries but I have also understood the importance and great things you can do with media queries for the future of when Im going to be creating more websites. I struggled a bit with photos. I think its quite hard to optimize them and get them to adjust as I please. I think its maybe a question of uploading the correct image size for a certain position to make it the best result. \r\n\r\nHere is my Netlify link: https://confident-tesla-d13ebb.netlify.app/\r\n\r\n/Jakob Lindström", + "created_at": "2021-08-30T06:43:38Z", + "updated_at": "2021-08-31T15:37:34Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "886c6494b3ac3a60546429fd4d0645bd5e150018", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/233/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/233/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/233/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/5ae62cf3c557d59c0c94e1375404944d1a3d01bc", + "head": { + "label": "jakobxlindstrom:master", + "ref": "master", + "sha": "5ae62cf3c557d59c0c94e1375404944d1a3d01bc", + "user": { + "login": "jakobxlindstrom", + "id": 81704544, + "node_id": "MDQ6VXNlcjgxNzA0NTQ0", + "avatar_url": "https://avatars.githubusercontent.com/u/81704544?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jakobxlindstrom", + "html_url": "https://github.com/jakobxlindstrom", + "followers_url": "https://api.github.com/users/jakobxlindstrom/followers", + "following_url": "https://api.github.com/users/jakobxlindstrom/following{/other_user}", + "gists_url": "https://api.github.com/users/jakobxlindstrom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakobxlindstrom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakobxlindstrom/subscriptions", + "organizations_url": "https://api.github.com/users/jakobxlindstrom/orgs", + "repos_url": "https://api.github.com/users/jakobxlindstrom/repos", + "events_url": "https://api.github.com/users/jakobxlindstrom/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakobxlindstrom/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398892030, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4OTIwMzA=", + "name": "project-news-site", + "full_name": "jakobxlindstrom/project-news-site", + "private": false, + "owner": { + "login": "jakobxlindstrom", + "id": 81704544, + "node_id": "MDQ6VXNlcjgxNzA0NTQ0", + "avatar_url": "https://avatars.githubusercontent.com/u/81704544?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jakobxlindstrom", + "html_url": "https://github.com/jakobxlindstrom", + "followers_url": "https://api.github.com/users/jakobxlindstrom/followers", + "following_url": "https://api.github.com/users/jakobxlindstrom/following{/other_user}", + "gists_url": "https://api.github.com/users/jakobxlindstrom/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jakobxlindstrom/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jakobxlindstrom/subscriptions", + "organizations_url": "https://api.github.com/users/jakobxlindstrom/orgs", + "repos_url": "https://api.github.com/users/jakobxlindstrom/repos", + "events_url": "https://api.github.com/users/jakobxlindstrom/events{/privacy}", + "received_events_url": "https://api.github.com/users/jakobxlindstrom/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/jakobxlindstrom/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/jakobxlindstrom/project-news-site", + "forks_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/forks", + "keys_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/events", + "assignees_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/merges", + "archive_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/deployments", + "created_at": "2021-08-22T20:13:53Z", + "updated_at": "2021-08-29T14:04:00Z", + "pushed_at": "2021-08-29T14:03:57Z", + "git_url": "git://github.com/jakobxlindstrom/project-news-site.git", + "ssh_url": "git@github.com:jakobxlindstrom/project-news-site.git", + "clone_url": "https://github.com/jakobxlindstrom/project-news-site.git", + "svn_url": "https://github.com/jakobxlindstrom/project-news-site", + "homepage": null, + "size": 773, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/233" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/233" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/233" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/233/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/233/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/233/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/5ae62cf3c557d59c0c94e1375404944d1a3d01bc" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/232", + "id": 722178074, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMTc4MDc0", + "html_url": "https://github.com/Technigo/project-news-site/pull/232", + "diff_url": "https://github.com/Technigo/project-news-site/pull/232.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/232.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/232", + "number": 232, + "state": "open", + "locked": false, + "title": "Anndimi project news site", + "user": { + "login": "anndimi", + "id": 80685721, + "node_id": "MDQ6VXNlcjgwNjg1NzIx", + "avatar_url": "https://avatars.githubusercontent.com/u/80685721?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anndimi", + "html_url": "https://github.com/anndimi", + "followers_url": "https://api.github.com/users/anndimi/followers", + "following_url": "https://api.github.com/users/anndimi/following{/other_user}", + "gists_url": "https://api.github.com/users/anndimi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anndimi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anndimi/subscriptions", + "organizations_url": "https://api.github.com/users/anndimi/orgs", + "repos_url": "https://api.github.com/users/anndimi/repos", + "events_url": "https://api.github.com/users/anndimi/events{/privacy}", + "received_events_url": "https://api.github.com/users/anndimi/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-30T05:37:36Z", + "updated_at": "2021-09-08T09:46:28Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "b49cb1893d2050078cd0e4f21c9f58beb6048194", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/232/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/232/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/232/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/8f843fdf051959d76289fb183023f636a29baef9", + "head": { + "label": "anndimi:anndimi-project-news-site", + "ref": "anndimi-project-news-site", + "sha": "8f843fdf051959d76289fb183023f636a29baef9", + "user": { + "login": "anndimi", + "id": 80685721, + "node_id": "MDQ6VXNlcjgwNjg1NzIx", + "avatar_url": "https://avatars.githubusercontent.com/u/80685721?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anndimi", + "html_url": "https://github.com/anndimi", + "followers_url": "https://api.github.com/users/anndimi/followers", + "following_url": "https://api.github.com/users/anndimi/following{/other_user}", + "gists_url": "https://api.github.com/users/anndimi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anndimi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anndimi/subscriptions", + "organizations_url": "https://api.github.com/users/anndimi/orgs", + "repos_url": "https://api.github.com/users/anndimi/repos", + "events_url": "https://api.github.com/users/anndimi/events{/privacy}", + "received_events_url": "https://api.github.com/users/anndimi/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399024449, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjQ0NDk=", + "name": "project-news-site", + "full_name": "anndimi/project-news-site", + "private": false, + "owner": { + "login": "anndimi", + "id": 80685721, + "node_id": "MDQ6VXNlcjgwNjg1NzIx", + "avatar_url": "https://avatars.githubusercontent.com/u/80685721?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/anndimi", + "html_url": "https://github.com/anndimi", + "followers_url": "https://api.github.com/users/anndimi/followers", + "following_url": "https://api.github.com/users/anndimi/following{/other_user}", + "gists_url": "https://api.github.com/users/anndimi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/anndimi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/anndimi/subscriptions", + "organizations_url": "https://api.github.com/users/anndimi/orgs", + "repos_url": "https://api.github.com/users/anndimi/repos", + "events_url": "https://api.github.com/users/anndimi/events{/privacy}", + "received_events_url": "https://api.github.com/users/anndimi/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/anndimi/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/anndimi/project-news-site", + "forks_url": "https://api.github.com/repos/anndimi/project-news-site/forks", + "keys_url": "https://api.github.com/repos/anndimi/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/anndimi/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/anndimi/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/anndimi/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/anndimi/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/anndimi/project-news-site/events", + "assignees_url": "https://api.github.com/repos/anndimi/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/anndimi/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/anndimi/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/anndimi/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/anndimi/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/anndimi/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/anndimi/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/anndimi/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/anndimi/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/anndimi/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/anndimi/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/anndimi/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/anndimi/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/anndimi/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/anndimi/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/anndimi/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/anndimi/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/anndimi/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/anndimi/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/anndimi/project-news-site/merges", + "archive_url": "https://api.github.com/repos/anndimi/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/anndimi/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/anndimi/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/anndimi/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/anndimi/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/anndimi/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/anndimi/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/anndimi/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/anndimi/project-news-site/deployments", + "created_at": "2021-08-23T08:14:22Z", + "updated_at": "2021-08-26T12:57:26Z", + "pushed_at": "2021-08-30T05:35:34Z", + "git_url": "git://github.com/anndimi/project-news-site.git", + "ssh_url": "git@github.com:anndimi/project-news-site.git", + "clone_url": "https://github.com/anndimi/project-news-site.git", + "svn_url": "https://github.com/anndimi/project-news-site", + "homepage": null, + "size": 11429, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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": 1, + "license": null, + "allow_forking": true, + "forks": 0, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/232" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/232" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/232" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/232/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/232/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/232/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/8f843fdf051959d76289fb183023f636a29baef9" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/231", + "id": 722033338, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDMzMzM4", + "html_url": "https://github.com/Technigo/project-news-site/pull/231", + "diff_url": "https://github.com/Technigo/project-news-site/pull/231.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/231.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/231", + "number": 231, + "state": "open", + "locked": false, + "title": "Week 2 project pull request from Maria Sjögren", + "user": { + "login": "molbimien", + "id": 43146046, + "node_id": "MDQ6VXNlcjQzMTQ2MDQ2", + "avatar_url": "https://avatars.githubusercontent.com/u/43146046?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/molbimien", + "html_url": "https://github.com/molbimien", + "followers_url": "https://api.github.com/users/molbimien/followers", + "following_url": "https://api.github.com/users/molbimien/following{/other_user}", + "gists_url": "https://api.github.com/users/molbimien/gists{/gist_id}", + "starred_url": "https://api.github.com/users/molbimien/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/molbimien/subscriptions", + "organizations_url": "https://api.github.com/users/molbimien/orgs", + "repos_url": "https://api.github.com/users/molbimien/repos", + "events_url": "https://api.github.com/users/molbimien/events{/privacy}", + "received_events_url": "https://api.github.com/users/molbimien/received_events", + "type": "User", + "site_admin": false + }, + "body": "Here's my pull request for this week's project: Build a news site. ", + "created_at": "2021-08-29T23:01:23Z", + "updated_at": "2021-09-01T18:23:22Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "1f9e68cf7738194ce6a1f77bf940bc9001ee4a9b", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/231/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/231/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/231/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/a33044e6d056ab627b6f568da0e7a9ca019f7ebc", + "head": { + "label": "molbimien:master", + "ref": "master", + "sha": "a33044e6d056ab627b6f568da0e7a9ca019f7ebc", + "user": { + "login": "molbimien", + "id": 43146046, + "node_id": "MDQ6VXNlcjQzMTQ2MDQ2", + "avatar_url": "https://avatars.githubusercontent.com/u/43146046?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/molbimien", + "html_url": "https://github.com/molbimien", + "followers_url": "https://api.github.com/users/molbimien/followers", + "following_url": "https://api.github.com/users/molbimien/following{/other_user}", + "gists_url": "https://api.github.com/users/molbimien/gists{/gist_id}", + "starred_url": "https://api.github.com/users/molbimien/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/molbimien/subscriptions", + "organizations_url": "https://api.github.com/users/molbimien/orgs", + "repos_url": "https://api.github.com/users/molbimien/repos", + "events_url": "https://api.github.com/users/molbimien/events{/privacy}", + "received_events_url": "https://api.github.com/users/molbimien/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399024500, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjQ1MDA=", + "name": "project-news-site", + "full_name": "molbimien/project-news-site", + "private": false, + "owner": { + "login": "molbimien", + "id": 43146046, + "node_id": "MDQ6VXNlcjQzMTQ2MDQ2", + "avatar_url": "https://avatars.githubusercontent.com/u/43146046?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/molbimien", + "html_url": "https://github.com/molbimien", + "followers_url": "https://api.github.com/users/molbimien/followers", + "following_url": "https://api.github.com/users/molbimien/following{/other_user}", + "gists_url": "https://api.github.com/users/molbimien/gists{/gist_id}", + "starred_url": "https://api.github.com/users/molbimien/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/molbimien/subscriptions", + "organizations_url": "https://api.github.com/users/molbimien/orgs", + "repos_url": "https://api.github.com/users/molbimien/repos", + "events_url": "https://api.github.com/users/molbimien/events{/privacy}", + "received_events_url": "https://api.github.com/users/molbimien/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/molbimien/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/molbimien/project-news-site", + "forks_url": "https://api.github.com/repos/molbimien/project-news-site/forks", + "keys_url": "https://api.github.com/repos/molbimien/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/molbimien/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/molbimien/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/molbimien/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/molbimien/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/molbimien/project-news-site/events", + "assignees_url": "https://api.github.com/repos/molbimien/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/molbimien/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/molbimien/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/molbimien/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/molbimien/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/molbimien/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/molbimien/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/molbimien/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/molbimien/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/molbimien/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/molbimien/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/molbimien/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/molbimien/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/molbimien/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/molbimien/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/molbimien/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/molbimien/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/molbimien/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/molbimien/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/molbimien/project-news-site/merges", + "archive_url": "https://api.github.com/repos/molbimien/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/molbimien/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/molbimien/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/molbimien/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/molbimien/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/molbimien/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/molbimien/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/molbimien/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/molbimien/project-news-site/deployments", + "created_at": "2021-08-23T08:14:32Z", + "updated_at": "2021-08-30T18:24:58Z", + "pushed_at": "2021-08-30T18:24:55Z", + "git_url": "git://github.com/molbimien/project-news-site.git", + "ssh_url": "git@github.com:molbimien/project-news-site.git", + "clone_url": "https://github.com/molbimien/project-news-site.git", + "svn_url": "https://github.com/molbimien/project-news-site", + "homepage": null, + "size": 781, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/231" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/231" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/231" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/231/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/231/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/231/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/a33044e6d056ab627b6f568da0e7a9ca019f7ebc" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/230", + "id": 722024532, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDI0NTMy", + "html_url": "https://github.com/Technigo/project-news-site/pull/230", + "diff_url": "https://github.com/Technigo/project-news-site/pull/230.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/230.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/230", + "number": 230, + "state": "open", + "locked": false, + "title": "Nina Rivera", + "user": { + "login": "NinaAlejandra", + "id": 81374275, + "node_id": "MDQ6VXNlcjgxMzc0Mjc1", + "avatar_url": "https://avatars.githubusercontent.com/u/81374275?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/NinaAlejandra", + "html_url": "https://github.com/NinaAlejandra", + "followers_url": "https://api.github.com/users/NinaAlejandra/followers", + "following_url": "https://api.github.com/users/NinaAlejandra/following{/other_user}", + "gists_url": "https://api.github.com/users/NinaAlejandra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/NinaAlejandra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/NinaAlejandra/subscriptions", + "organizations_url": "https://api.github.com/users/NinaAlejandra/orgs", + "repos_url": "https://api.github.com/users/NinaAlejandra/repos", + "events_url": "https://api.github.com/users/NinaAlejandra/events{/privacy}", + "received_events_url": "https://api.github.com/users/NinaAlejandra/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-29T21:53:34Z", + "updated_at": "2021-09-21T18:56:54Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "731e19f2d6d6ac53c386eae860b926acf4eee72a", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/230/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/230/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/230/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/f5f768d9b690cb81dbfda4de0fabf0943b7f256d", + "head": { + "label": "NinaAlejandra:master", + "ref": "master", + "sha": "f5f768d9b690cb81dbfda4de0fabf0943b7f256d", + "user": { + "login": "NinaAlejandra", + "id": 81374275, + "node_id": "MDQ6VXNlcjgxMzc0Mjc1", + "avatar_url": "https://avatars.githubusercontent.com/u/81374275?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/NinaAlejandra", + "html_url": "https://github.com/NinaAlejandra", + "followers_url": "https://api.github.com/users/NinaAlejandra/followers", + "following_url": "https://api.github.com/users/NinaAlejandra/following{/other_user}", + "gists_url": "https://api.github.com/users/NinaAlejandra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/NinaAlejandra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/NinaAlejandra/subscriptions", + "organizations_url": "https://api.github.com/users/NinaAlejandra/orgs", + "repos_url": "https://api.github.com/users/NinaAlejandra/repos", + "events_url": "https://api.github.com/users/NinaAlejandra/events{/privacy}", + "received_events_url": "https://api.github.com/users/NinaAlejandra/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399625390, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTk2MjUzOTA=", + "name": "project-news-site", + "full_name": "NinaAlejandra/project-news-site", + "private": false, + "owner": { + "login": "NinaAlejandra", + "id": 81374275, + "node_id": "MDQ6VXNlcjgxMzc0Mjc1", + "avatar_url": "https://avatars.githubusercontent.com/u/81374275?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/NinaAlejandra", + "html_url": "https://github.com/NinaAlejandra", + "followers_url": "https://api.github.com/users/NinaAlejandra/followers", + "following_url": "https://api.github.com/users/NinaAlejandra/following{/other_user}", + "gists_url": "https://api.github.com/users/NinaAlejandra/gists{/gist_id}", + "starred_url": "https://api.github.com/users/NinaAlejandra/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/NinaAlejandra/subscriptions", + "organizations_url": "https://api.github.com/users/NinaAlejandra/orgs", + "repos_url": "https://api.github.com/users/NinaAlejandra/repos", + "events_url": "https://api.github.com/users/NinaAlejandra/events{/privacy}", + "received_events_url": "https://api.github.com/users/NinaAlejandra/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/NinaAlejandra/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/NinaAlejandra/project-news-site", + "forks_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/forks", + "keys_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/events", + "assignees_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/merges", + "archive_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/deployments", + "created_at": "2021-08-24T22:55:04Z", + "updated_at": "2021-09-21T18:56:56Z", + "pushed_at": "2021-09-21T18:56:53Z", + "git_url": "git://github.com/NinaAlejandra/project-news-site.git", + "ssh_url": "git@github.com:NinaAlejandra/project-news-site.git", + "clone_url": "https://github.com/NinaAlejandra/project-news-site.git", + "svn_url": "https://github.com/NinaAlejandra/project-news-site", + "homepage": null, + "size": 1794, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/230" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/230" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/230" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/230/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/230/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/230/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/f5f768d9b690cb81dbfda4de0fabf0943b7f256d" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/229", + "id": 722024094, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDI0MDk0", + "html_url": "https://github.com/Technigo/project-news-site/pull/229", + "diff_url": "https://github.com/Technigo/project-news-site/pull/229.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/229.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/229", + "number": 229, + "state": "open", + "locked": false, + "title": "News site", + "user": { + "login": "Ingetora", + "id": 40246091, + "node_id": "MDQ6VXNlcjQwMjQ2MDkx", + "avatar_url": "https://avatars.githubusercontent.com/u/40246091?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Ingetora", + "html_url": "https://github.com/Ingetora", + "followers_url": "https://api.github.com/users/Ingetora/followers", + "following_url": "https://api.github.com/users/Ingetora/following{/other_user}", + "gists_url": "https://api.github.com/users/Ingetora/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Ingetora/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Ingetora/subscriptions", + "organizations_url": "https://api.github.com/users/Ingetora/orgs", + "repos_url": "https://api.github.com/users/Ingetora/repos", + "events_url": "https://api.github.com/users/Ingetora/events{/privacy}", + "received_events_url": "https://api.github.com/users/Ingetora/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-29T21:49:45Z", + "updated_at": "2021-09-02T08:44:50Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "bef91311af56357ffd6352664b993794f4ca6c8f", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/229/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/229/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/229/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/18de362457d899e14b31d3f7740fad2bd29e0017", + "head": { + "label": "Ingetora:master", + "ref": "master", + "sha": "18de362457d899e14b31d3f7740fad2bd29e0017", + "user": { + "login": "Ingetora", + "id": 40246091, + "node_id": "MDQ6VXNlcjQwMjQ2MDkx", + "avatar_url": "https://avatars.githubusercontent.com/u/40246091?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Ingetora", + "html_url": "https://github.com/Ingetora", + "followers_url": "https://api.github.com/users/Ingetora/followers", + "following_url": "https://api.github.com/users/Ingetora/following{/other_user}", + "gists_url": "https://api.github.com/users/Ingetora/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Ingetora/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Ingetora/subscriptions", + "organizations_url": "https://api.github.com/users/Ingetora/orgs", + "repos_url": "https://api.github.com/users/Ingetora/repos", + "events_url": "https://api.github.com/users/Ingetora/events{/privacy}", + "received_events_url": "https://api.github.com/users/Ingetora/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 400508774, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDA1MDg3NzQ=", + "name": "project-news-site", + "full_name": "Ingetora/project-news-site", + "private": false, + "owner": { + "login": "Ingetora", + "id": 40246091, + "node_id": "MDQ6VXNlcjQwMjQ2MDkx", + "avatar_url": "https://avatars.githubusercontent.com/u/40246091?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Ingetora", + "html_url": "https://github.com/Ingetora", + "followers_url": "https://api.github.com/users/Ingetora/followers", + "following_url": "https://api.github.com/users/Ingetora/following{/other_user}", + "gists_url": "https://api.github.com/users/Ingetora/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Ingetora/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Ingetora/subscriptions", + "organizations_url": "https://api.github.com/users/Ingetora/orgs", + "repos_url": "https://api.github.com/users/Ingetora/repos", + "events_url": "https://api.github.com/users/Ingetora/events{/privacy}", + "received_events_url": "https://api.github.com/users/Ingetora/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Ingetora/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Ingetora/project-news-site", + "forks_url": "https://api.github.com/repos/Ingetora/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Ingetora/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Ingetora/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Ingetora/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Ingetora/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Ingetora/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Ingetora/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Ingetora/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Ingetora/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Ingetora/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Ingetora/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Ingetora/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Ingetora/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Ingetora/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Ingetora/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Ingetora/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Ingetora/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Ingetora/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Ingetora/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Ingetora/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Ingetora/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Ingetora/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Ingetora/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Ingetora/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Ingetora/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Ingetora/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Ingetora/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Ingetora/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Ingetora/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Ingetora/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Ingetora/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Ingetora/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Ingetora/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Ingetora/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Ingetora/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Ingetora/project-news-site/deployments", + "created_at": "2021-08-27T12:54:22Z", + "updated_at": "2021-08-29T11:38:50Z", + "pushed_at": "2021-08-29T11:38:48Z", + "git_url": "git://github.com/Ingetora/project-news-site.git", + "ssh_url": "git@github.com:Ingetora/project-news-site.git", + "clone_url": "https://github.com/Ingetora/project-news-site.git", + "svn_url": "https://github.com/Ingetora/project-news-site", + "homepage": null, + "size": 762, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/229" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/229" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/229" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/229/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/229/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/229/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/18de362457d899e14b31d3f7740fad2bd29e0017" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/228", + "id": 722021456, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDIxNDU2", + "html_url": "https://github.com/Technigo/project-news-site/pull/228", + "diff_url": "https://github.com/Technigo/project-news-site/pull/228.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/228.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/228", + "number": 228, + "state": "open", + "locked": false, + "title": "Week 2 - news site - linnéa wilhelmsson ", + "user": { + "login": "Skrosen", + "id": 76884712, + "node_id": "MDQ6VXNlcjc2ODg0NzEy", + "avatar_url": "https://avatars.githubusercontent.com/u/76884712?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Skrosen", + "html_url": "https://github.com/Skrosen", + "followers_url": "https://api.github.com/users/Skrosen/followers", + "following_url": "https://api.github.com/users/Skrosen/following{/other_user}", + "gists_url": "https://api.github.com/users/Skrosen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Skrosen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Skrosen/subscriptions", + "organizations_url": "https://api.github.com/users/Skrosen/orgs", + "repos_url": "https://api.github.com/users/Skrosen/repos", + "events_url": "https://api.github.com/users/Skrosen/events{/privacy}", + "received_events_url": "https://api.github.com/users/Skrosen/received_events", + "type": "User", + "site_admin": false + }, + "body": "https://linneawilhelmsson-week2-news-site.netlify.app/", + "created_at": "2021-08-29T21:26:52Z", + "updated_at": "2021-09-09T17:23:05Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "c47c20240f0f0ff46f6659a3d677c333f91e02b4", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/228/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/228/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/228/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/f453db256e0926508409fc0b9fdd52eae8af389a", + "head": { + "label": "Skrosen:master", + "ref": "master", + "sha": "f453db256e0926508409fc0b9fdd52eae8af389a", + "user": { + "login": "Skrosen", + "id": 76884712, + "node_id": "MDQ6VXNlcjc2ODg0NzEy", + "avatar_url": "https://avatars.githubusercontent.com/u/76884712?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Skrosen", + "html_url": "https://github.com/Skrosen", + "followers_url": "https://api.github.com/users/Skrosen/followers", + "following_url": "https://api.github.com/users/Skrosen/following{/other_user}", + "gists_url": "https://api.github.com/users/Skrosen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Skrosen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Skrosen/subscriptions", + "organizations_url": "https://api.github.com/users/Skrosen/orgs", + "repos_url": "https://api.github.com/users/Skrosen/repos", + "events_url": "https://api.github.com/users/Skrosen/events{/privacy}", + "received_events_url": "https://api.github.com/users/Skrosen/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399025830, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjU4MzA=", + "name": "project-news-site", + "full_name": "Skrosen/project-news-site", + "private": false, + "owner": { + "login": "Skrosen", + "id": 76884712, + "node_id": "MDQ6VXNlcjc2ODg0NzEy", + "avatar_url": "https://avatars.githubusercontent.com/u/76884712?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Skrosen", + "html_url": "https://github.com/Skrosen", + "followers_url": "https://api.github.com/users/Skrosen/followers", + "following_url": "https://api.github.com/users/Skrosen/following{/other_user}", + "gists_url": "https://api.github.com/users/Skrosen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Skrosen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Skrosen/subscriptions", + "organizations_url": "https://api.github.com/users/Skrosen/orgs", + "repos_url": "https://api.github.com/users/Skrosen/repos", + "events_url": "https://api.github.com/users/Skrosen/events{/privacy}", + "received_events_url": "https://api.github.com/users/Skrosen/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Skrosen/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Skrosen/project-news-site", + "forks_url": "https://api.github.com/repos/Skrosen/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Skrosen/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Skrosen/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Skrosen/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Skrosen/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Skrosen/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Skrosen/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Skrosen/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Skrosen/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Skrosen/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Skrosen/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Skrosen/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Skrosen/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Skrosen/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Skrosen/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Skrosen/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Skrosen/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Skrosen/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Skrosen/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Skrosen/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Skrosen/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Skrosen/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Skrosen/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Skrosen/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Skrosen/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Skrosen/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Skrosen/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Skrosen/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Skrosen/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Skrosen/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Skrosen/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Skrosen/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Skrosen/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Skrosen/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Skrosen/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Skrosen/project-news-site/deployments", + "created_at": "2021-08-23T08:19:08Z", + "updated_at": "2021-08-29T20:26:25Z", + "pushed_at": "2021-08-29T20:26:22Z", + "git_url": "git://github.com/Skrosen/project-news-site.git", + "ssh_url": "git@github.com:Skrosen/project-news-site.git", + "clone_url": "https://github.com/Skrosen/project-news-site.git", + "svn_url": "https://github.com/Skrosen/project-news-site", + "homepage": null, + "size": 773, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/228" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/228" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/228" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/228/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/228/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/228/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/f453db256e0926508409fc0b9fdd52eae8af389a" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/227", + "id": 722021382, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDIxMzgy", + "html_url": "https://github.com/Technigo/project-news-site/pull/227", + "diff_url": "https://github.com/Technigo/project-news-site/pull/227.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/227.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/227", + "number": 227, + "state": "open", + "locked": false, + "title": "the news-site", + "user": { + "login": "AschwinSiaila", + "id": 84479671, + "node_id": "MDQ6VXNlcjg0NDc5Njcx", + "avatar_url": "https://avatars.githubusercontent.com/u/84479671?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AschwinSiaila", + "html_url": "https://github.com/AschwinSiaila", + "followers_url": "https://api.github.com/users/AschwinSiaila/followers", + "following_url": "https://api.github.com/users/AschwinSiaila/following{/other_user}", + "gists_url": "https://api.github.com/users/AschwinSiaila/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AschwinSiaila/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AschwinSiaila/subscriptions", + "organizations_url": "https://api.github.com/users/AschwinSiaila/orgs", + "repos_url": "https://api.github.com/users/AschwinSiaila/repos", + "events_url": "https://api.github.com/users/AschwinSiaila/events{/privacy}", + "received_events_url": "https://api.github.com/users/AschwinSiaila/received_events", + "type": "User", + "site_admin": false + }, + "body": "Netlify can not find my page, after I deploy my code from github. I tried it a couple of times, but I do not know how? About the coding I had troubles with the header, I think I made it difficult for me to rearrange the elements in my header, because I created my own logo. I missed the last class on friday because I was in a flight to the other side of the world and for my feeling i missed a lot. Now in this project this were the struggles but I learned a lot of coding including the games I noticed that when I was typing the answers that I automatically pushed ctrl S. ", + "created_at": "2021-08-29T21:26:17Z", + "updated_at": "2021-09-01T20:29:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "8dbc370acaf3b1d9c820560dc89e5dd145843357", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/227/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/227/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/227/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/7f25c8567c12cc29a01698f166f481997a7ed836", + "head": { + "label": "AschwinSiaila:master", + "ref": "master", + "sha": "7f25c8567c12cc29a01698f166f481997a7ed836", + "user": { + "login": "AschwinSiaila", + "id": 84479671, + "node_id": "MDQ6VXNlcjg0NDc5Njcx", + "avatar_url": "https://avatars.githubusercontent.com/u/84479671?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AschwinSiaila", + "html_url": "https://github.com/AschwinSiaila", + "followers_url": "https://api.github.com/users/AschwinSiaila/followers", + "following_url": "https://api.github.com/users/AschwinSiaila/following{/other_user}", + "gists_url": "https://api.github.com/users/AschwinSiaila/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AschwinSiaila/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AschwinSiaila/subscriptions", + "organizations_url": "https://api.github.com/users/AschwinSiaila/orgs", + "repos_url": "https://api.github.com/users/AschwinSiaila/repos", + "events_url": "https://api.github.com/users/AschwinSiaila/events{/privacy}", + "received_events_url": "https://api.github.com/users/AschwinSiaila/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399093166, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwOTMxNjY=", + "name": "project-news-site", + "full_name": "AschwinSiaila/project-news-site", + "private": false, + "owner": { + "login": "AschwinSiaila", + "id": 84479671, + "node_id": "MDQ6VXNlcjg0NDc5Njcx", + "avatar_url": "https://avatars.githubusercontent.com/u/84479671?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/AschwinSiaila", + "html_url": "https://github.com/AschwinSiaila", + "followers_url": "https://api.github.com/users/AschwinSiaila/followers", + "following_url": "https://api.github.com/users/AschwinSiaila/following{/other_user}", + "gists_url": "https://api.github.com/users/AschwinSiaila/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AschwinSiaila/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AschwinSiaila/subscriptions", + "organizations_url": "https://api.github.com/users/AschwinSiaila/orgs", + "repos_url": "https://api.github.com/users/AschwinSiaila/repos", + "events_url": "https://api.github.com/users/AschwinSiaila/events{/privacy}", + "received_events_url": "https://api.github.com/users/AschwinSiaila/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/AschwinSiaila/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/AschwinSiaila/project-news-site", + "forks_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/forks", + "keys_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/events", + "assignees_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/merges", + "archive_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/deployments", + "created_at": "2021-08-23T12:19:52Z", + "updated_at": "2021-09-01T07:55:20Z", + "pushed_at": "2021-09-01T07:55:17Z", + "git_url": "git://github.com/AschwinSiaila/project-news-site.git", + "ssh_url": "git@github.com:AschwinSiaila/project-news-site.git", + "clone_url": "https://github.com/AschwinSiaila/project-news-site.git", + "svn_url": "https://github.com/AschwinSiaila/project-news-site", + "homepage": null, + "size": 778, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/227" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/227" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/227" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/227/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/227/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/227/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/7f25c8567c12cc29a01698f166f481997a7ed836" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/226", + "id": 722011409, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDExNDA5", + "html_url": "https://github.com/Technigo/project-news-site/pull/226", + "diff_url": "https://github.com/Technigo/project-news-site/pull/226.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/226.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/226", + "number": 226, + "state": "open", + "locked": false, + "title": "Daniel Vestin project-news-site", + "user": { + "login": "dandeloid", + "id": 82587220, + "node_id": "MDQ6VXNlcjgyNTg3MjIw", + "avatar_url": "https://avatars.githubusercontent.com/u/82587220?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dandeloid", + "html_url": "https://github.com/dandeloid", + "followers_url": "https://api.github.com/users/dandeloid/followers", + "following_url": "https://api.github.com/users/dandeloid/following{/other_user}", + "gists_url": "https://api.github.com/users/dandeloid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dandeloid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dandeloid/subscriptions", + "organizations_url": "https://api.github.com/users/dandeloid/orgs", + "repos_url": "https://api.github.com/users/dandeloid/repos", + "events_url": "https://api.github.com/users/dandeloid/events{/privacy}", + "received_events_url": "https://api.github.com/users/dandeloid/received_events", + "type": "User", + "site_admin": false + }, + "body": "project-news-site", + "created_at": "2021-08-29T20:06:35Z", + "updated_at": "2021-08-30T22:51:32Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "21d50793f0168bf484752c6a908c14e5cee94fe4", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/226/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/226/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/226/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/ed783ce94f31cc8000c0bb7de89a384d871d9904", + "head": { + "label": "dandeloid:master", + "ref": "master", + "sha": "ed783ce94f31cc8000c0bb7de89a384d871d9904", + "user": { + "login": "dandeloid", + "id": 82587220, + "node_id": "MDQ6VXNlcjgyNTg3MjIw", + "avatar_url": "https://avatars.githubusercontent.com/u/82587220?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dandeloid", + "html_url": "https://github.com/dandeloid", + "followers_url": "https://api.github.com/users/dandeloid/followers", + "following_url": "https://api.github.com/users/dandeloid/following{/other_user}", + "gists_url": "https://api.github.com/users/dandeloid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dandeloid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dandeloid/subscriptions", + "organizations_url": "https://api.github.com/users/dandeloid/orgs", + "repos_url": "https://api.github.com/users/dandeloid/repos", + "events_url": "https://api.github.com/users/dandeloid/events{/privacy}", + "received_events_url": "https://api.github.com/users/dandeloid/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398242686, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTgyNDI2ODY=", + "name": "project-news-site", + "full_name": "dandeloid/project-news-site", + "private": false, + "owner": { + "login": "dandeloid", + "id": 82587220, + "node_id": "MDQ6VXNlcjgyNTg3MjIw", + "avatar_url": "https://avatars.githubusercontent.com/u/82587220?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dandeloid", + "html_url": "https://github.com/dandeloid", + "followers_url": "https://api.github.com/users/dandeloid/followers", + "following_url": "https://api.github.com/users/dandeloid/following{/other_user}", + "gists_url": "https://api.github.com/users/dandeloid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dandeloid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dandeloid/subscriptions", + "organizations_url": "https://api.github.com/users/dandeloid/orgs", + "repos_url": "https://api.github.com/users/dandeloid/repos", + "events_url": "https://api.github.com/users/dandeloid/events{/privacy}", + "received_events_url": "https://api.github.com/users/dandeloid/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/dandeloid/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/dandeloid/project-news-site", + "forks_url": "https://api.github.com/repos/dandeloid/project-news-site/forks", + "keys_url": "https://api.github.com/repos/dandeloid/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/dandeloid/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/dandeloid/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/dandeloid/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/dandeloid/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/dandeloid/project-news-site/events", + "assignees_url": "https://api.github.com/repos/dandeloid/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/dandeloid/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/dandeloid/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/dandeloid/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/dandeloid/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/dandeloid/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/dandeloid/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/dandeloid/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/dandeloid/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/dandeloid/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/dandeloid/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/dandeloid/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/dandeloid/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/dandeloid/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/dandeloid/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/dandeloid/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/dandeloid/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/dandeloid/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/dandeloid/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/dandeloid/project-news-site/merges", + "archive_url": "https://api.github.com/repos/dandeloid/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/dandeloid/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/dandeloid/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/dandeloid/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/dandeloid/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/dandeloid/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/dandeloid/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/dandeloid/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/dandeloid/project-news-site/deployments", + "created_at": "2021-08-20T10:42:35Z", + "updated_at": "2021-08-29T19:50:48Z", + "pushed_at": "2021-08-29T19:50:45Z", + "git_url": "git://github.com/dandeloid/project-news-site.git", + "ssh_url": "git@github.com:dandeloid/project-news-site.git", + "clone_url": "https://github.com/dandeloid/project-news-site.git", + "svn_url": "https://github.com/dandeloid/project-news-site", + "homepage": null, + "size": 842, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/226" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/226" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/226" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/226/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/226/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/226/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/ed783ce94f31cc8000c0bb7de89a384d871d9904" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/225", + "id": 722011119, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDExMTE5", + "html_url": "https://github.com/Technigo/project-news-site/pull/225", + "diff_url": "https://github.com/Technigo/project-news-site/pull/225.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/225.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/225", + "number": 225, + "state": "open", + "locked": false, + "title": "New Site Project", + "user": { + "login": "Fatima-Gamero-Romero", + "id": 84101608, + "node_id": "MDQ6VXNlcjg0MTAxNjA4", + "avatar_url": "https://avatars.githubusercontent.com/u/84101608?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Fatima-Gamero-Romero", + "html_url": "https://github.com/Fatima-Gamero-Romero", + "followers_url": "https://api.github.com/users/Fatima-Gamero-Romero/followers", + "following_url": "https://api.github.com/users/Fatima-Gamero-Romero/following{/other_user}", + "gists_url": "https://api.github.com/users/Fatima-Gamero-Romero/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Fatima-Gamero-Romero/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Fatima-Gamero-Romero/subscriptions", + "organizations_url": "https://api.github.com/users/Fatima-Gamero-Romero/orgs", + "repos_url": "https://api.github.com/users/Fatima-Gamero-Romero/repos", + "events_url": "https://api.github.com/users/Fatima-Gamero-Romero/events{/privacy}", + "received_events_url": "https://api.github.com/users/Fatima-Gamero-Romero/received_events", + "type": "User", + "site_admin": false + }, + "body": "Fatima Gamero Romero", + "created_at": "2021-08-29T20:04:30Z", + "updated_at": "2021-09-20T09:58:20Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "3883af9b49f8f2caf4b798cf140c1ff290d59136", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/225/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/225/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/225/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/1d9fae78e9c4a336dc767ae882a0836e53baac53", + "head": { + "label": "Fatima-Gamero-Romero:master", + "ref": "master", + "sha": "1d9fae78e9c4a336dc767ae882a0836e53baac53", + "user": { + "login": "Fatima-Gamero-Romero", + "id": 84101608, + "node_id": "MDQ6VXNlcjg0MTAxNjA4", + "avatar_url": "https://avatars.githubusercontent.com/u/84101608?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Fatima-Gamero-Romero", + "html_url": "https://github.com/Fatima-Gamero-Romero", + "followers_url": "https://api.github.com/users/Fatima-Gamero-Romero/followers", + "following_url": "https://api.github.com/users/Fatima-Gamero-Romero/following{/other_user}", + "gists_url": "https://api.github.com/users/Fatima-Gamero-Romero/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Fatima-Gamero-Romero/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Fatima-Gamero-Romero/subscriptions", + "organizations_url": "https://api.github.com/users/Fatima-Gamero-Romero/orgs", + "repos_url": "https://api.github.com/users/Fatima-Gamero-Romero/repos", + "events_url": "https://api.github.com/users/Fatima-Gamero-Romero/events{/privacy}", + "received_events_url": "https://api.github.com/users/Fatima-Gamero-Romero/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399865770, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTk4NjU3NzA=", + "name": "project-news-site", + "full_name": "Fatima-Gamero-Romero/project-news-site", + "private": false, + "owner": { + "login": "Fatima-Gamero-Romero", + "id": 84101608, + "node_id": "MDQ6VXNlcjg0MTAxNjA4", + "avatar_url": "https://avatars.githubusercontent.com/u/84101608?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Fatima-Gamero-Romero", + "html_url": "https://github.com/Fatima-Gamero-Romero", + "followers_url": "https://api.github.com/users/Fatima-Gamero-Romero/followers", + "following_url": "https://api.github.com/users/Fatima-Gamero-Romero/following{/other_user}", + "gists_url": "https://api.github.com/users/Fatima-Gamero-Romero/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Fatima-Gamero-Romero/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Fatima-Gamero-Romero/subscriptions", + "organizations_url": "https://api.github.com/users/Fatima-Gamero-Romero/orgs", + "repos_url": "https://api.github.com/users/Fatima-Gamero-Romero/repos", + "events_url": "https://api.github.com/users/Fatima-Gamero-Romero/events{/privacy}", + "received_events_url": "https://api.github.com/users/Fatima-Gamero-Romero/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Fatima-Gamero-Romero/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site", + "forks_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/deployments", + "created_at": "2021-08-25T15:19:28Z", + "updated_at": "2021-09-20T09:58:21Z", + "pushed_at": "2021-09-20T09:58:19Z", + "git_url": "git://github.com/Fatima-Gamero-Romero/project-news-site.git", + "ssh_url": "git@github.com:Fatima-Gamero-Romero/project-news-site.git", + "clone_url": "https://github.com/Fatima-Gamero-Romero/project-news-site.git", + "svn_url": "https://github.com/Fatima-Gamero-Romero/project-news-site", + "homepage": null, + "size": 2942, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/225" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/225" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/225" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/225/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/225/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/225/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/1d9fae78e9c4a336dc767ae882a0836e53baac53" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/224", + "id": 722011103, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDExMTAz", + "html_url": "https://github.com/Technigo/project-news-site/pull/224", + "diff_url": "https://github.com/Technigo/project-news-site/pull/224.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/224.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/224", + "number": 224, + "state": "open", + "locked": false, + "title": "Sarah Mottram project news site", + "user": { + "login": "Smelbows", + "id": 67631502, + "node_id": "MDQ6VXNlcjY3NjMxNTAy", + "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Smelbows", + "html_url": "https://github.com/Smelbows", + "followers_url": "https://api.github.com/users/Smelbows/followers", + "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", + "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", + "organizations_url": "https://api.github.com/users/Smelbows/orgs", + "repos_url": "https://api.github.com/users/Smelbows/repos", + "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", + "received_events_url": "https://api.github.com/users/Smelbows/received_events", + "type": "User", + "site_admin": false + }, + "body": "I wanted to try out both grid and flex box as I'd never used either, but I tried to keep the code from getting too complex as it is all quite new. I focused on structuring the code correctly and experimented with the media, grid, flexbox and hover concepts. I would have liked to do a bit more work getting the grid 'cards' to be the same size regardless of their content (I tried a few things and it caused me issues elsewhere). I'd also like to look at some ways of creating a drop down nav bar for the mobile view.", + "created_at": "2021-08-29T20:04:25Z", + "updated_at": "2021-08-31T11:41:34Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "e8a6e4442215c4b75acea0db822e30ffe08e7f43", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/224/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/224/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/224/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/7110a14a3f5f7bffd00fe9498a322dd10a5767b8", + "head": { + "label": "Smelbows:master", + "ref": "master", + "sha": "7110a14a3f5f7bffd00fe9498a322dd10a5767b8", + "user": { + "login": "Smelbows", + "id": 67631502, + "node_id": "MDQ6VXNlcjY3NjMxNTAy", + "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Smelbows", + "html_url": "https://github.com/Smelbows", + "followers_url": "https://api.github.com/users/Smelbows/followers", + "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", + "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", + "organizations_url": "https://api.github.com/users/Smelbows/orgs", + "repos_url": "https://api.github.com/users/Smelbows/repos", + "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", + "received_events_url": "https://api.github.com/users/Smelbows/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399080438, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwODA0Mzg=", + "name": "project-news-site", + "full_name": "Smelbows/project-news-site", + "private": false, + "owner": { + "login": "Smelbows", + "id": 67631502, + "node_id": "MDQ6VXNlcjY3NjMxNTAy", + "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Smelbows", + "html_url": "https://github.com/Smelbows", + "followers_url": "https://api.github.com/users/Smelbows/followers", + "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", + "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", + "organizations_url": "https://api.github.com/users/Smelbows/orgs", + "repos_url": "https://api.github.com/users/Smelbows/repos", + "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", + "received_events_url": "https://api.github.com/users/Smelbows/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Smelbows/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Smelbows/project-news-site", + "forks_url": "https://api.github.com/repos/Smelbows/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Smelbows/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Smelbows/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Smelbows/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Smelbows/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Smelbows/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Smelbows/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Smelbows/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Smelbows/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Smelbows/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Smelbows/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Smelbows/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Smelbows/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Smelbows/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Smelbows/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Smelbows/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Smelbows/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Smelbows/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Smelbows/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Smelbows/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Smelbows/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Smelbows/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Smelbows/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Smelbows/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Smelbows/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Smelbows/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Smelbows/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Smelbows/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Smelbows/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Smelbows/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Smelbows/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Smelbows/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Smelbows/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Smelbows/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Smelbows/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Smelbows/project-news-site/deployments", + "created_at": "2021-08-23T11:40:28Z", + "updated_at": "2021-08-27T07:17:52Z", + "pushed_at": "2021-08-27T07:17:50Z", + "git_url": "git://github.com/Smelbows/project-news-site.git", + "ssh_url": "git@github.com:Smelbows/project-news-site.git", + "clone_url": "https://github.com/Smelbows/project-news-site.git", + "svn_url": "https://github.com/Smelbows/project-news-site", + "homepage": null, + "size": 842, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/224" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/224" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/224" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/224/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/224/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/224/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/7110a14a3f5f7bffd00fe9498a322dd10a5767b8" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/223", + "id": 722002017, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDAyMDE3", + "html_url": "https://github.com/Technigo/project-news-site/pull/223", + "diff_url": "https://github.com/Technigo/project-news-site/pull/223.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/223.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/223", + "number": 223, + "state": "open", + "locked": false, + "title": "Hedvig Mejstedt week 2", + "user": { + "login": "HedvigM", + "id": 72759122, + "node_id": "MDQ6VXNlcjcyNzU5MTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/72759122?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HedvigM", + "html_url": "https://github.com/HedvigM", + "followers_url": "https://api.github.com/users/HedvigM/followers", + "following_url": "https://api.github.com/users/HedvigM/following{/other_user}", + "gists_url": "https://api.github.com/users/HedvigM/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HedvigM/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HedvigM/subscriptions", + "organizations_url": "https://api.github.com/users/HedvigM/orgs", + "repos_url": "https://api.github.com/users/HedvigM/repos", + "events_url": "https://api.github.com/users/HedvigM/events{/privacy}", + "received_events_url": "https://api.github.com/users/HedvigM/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-29T18:55:58Z", + "updated_at": "2021-09-24T19:48:14Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "5fed5bfacbaaf7fe83bad4be5177e2fe37dbbc9d", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/223/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/223/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/223/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/d7c2ee7d0bfd6ff23c58367de7e7c6bb0d380523", + "head": { + "label": "HedvigM:master", + "ref": "master", + "sha": "d7c2ee7d0bfd6ff23c58367de7e7c6bb0d380523", + "user": { + "login": "HedvigM", + "id": 72759122, + "node_id": "MDQ6VXNlcjcyNzU5MTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/72759122?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HedvigM", + "html_url": "https://github.com/HedvigM", + "followers_url": "https://api.github.com/users/HedvigM/followers", + "following_url": "https://api.github.com/users/HedvigM/following{/other_user}", + "gists_url": "https://api.github.com/users/HedvigM/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HedvigM/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HedvigM/subscriptions", + "organizations_url": "https://api.github.com/users/HedvigM/orgs", + "repos_url": "https://api.github.com/users/HedvigM/repos", + "events_url": "https://api.github.com/users/HedvigM/events{/privacy}", + "received_events_url": "https://api.github.com/users/HedvigM/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399065741, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwNjU3NDE=", + "name": "project-news-site", + "full_name": "HedvigM/project-news-site", + "private": false, + "owner": { + "login": "HedvigM", + "id": 72759122, + "node_id": "MDQ6VXNlcjcyNzU5MTIy", + "avatar_url": "https://avatars.githubusercontent.com/u/72759122?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HedvigM", + "html_url": "https://github.com/HedvigM", + "followers_url": "https://api.github.com/users/HedvigM/followers", + "following_url": "https://api.github.com/users/HedvigM/following{/other_user}", + "gists_url": "https://api.github.com/users/HedvigM/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HedvigM/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HedvigM/subscriptions", + "organizations_url": "https://api.github.com/users/HedvigM/orgs", + "repos_url": "https://api.github.com/users/HedvigM/repos", + "events_url": "https://api.github.com/users/HedvigM/events{/privacy}", + "received_events_url": "https://api.github.com/users/HedvigM/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/HedvigM/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/HedvigM/project-news-site", + "forks_url": "https://api.github.com/repos/HedvigM/project-news-site/forks", + "keys_url": "https://api.github.com/repos/HedvigM/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HedvigM/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HedvigM/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/HedvigM/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/HedvigM/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/HedvigM/project-news-site/events", + "assignees_url": "https://api.github.com/repos/HedvigM/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/HedvigM/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/HedvigM/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/HedvigM/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HedvigM/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HedvigM/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HedvigM/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HedvigM/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HedvigM/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/HedvigM/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/HedvigM/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/HedvigM/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/HedvigM/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/HedvigM/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HedvigM/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HedvigM/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HedvigM/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HedvigM/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/HedvigM/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HedvigM/project-news-site/merges", + "archive_url": "https://api.github.com/repos/HedvigM/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HedvigM/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/HedvigM/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/HedvigM/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HedvigM/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HedvigM/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HedvigM/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/HedvigM/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/HedvigM/project-news-site/deployments", + "created_at": "2021-08-23T10:45:39Z", + "updated_at": "2021-09-24T19:48:15Z", + "pushed_at": "2021-09-24T19:48:12Z", + "git_url": "git://github.com/HedvigM/project-news-site.git", + "ssh_url": "git@github.com:HedvigM/project-news-site.git", + "clone_url": "https://github.com/HedvigM/project-news-site.git", + "svn_url": "https://github.com/HedvigM/project-news-site", + "homepage": null, + "size": 1045, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/223" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/223" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/223" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/223/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/223/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/223/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/d7c2ee7d0bfd6ff23c58367de7e7c6bb0d380523" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/222", + "id": 721988698, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTg4Njk4", + "html_url": "https://github.com/Technigo/project-news-site/pull/222", + "diff_url": "https://github.com/Technigo/project-news-site/pull/222.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/222.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/222", + "number": 222, + "state": "open", + "locked": false, + "title": "Amanda Tilly Week 2 News Site", + "user": { + "login": "amandatilly", + "id": 54897557, + "node_id": "MDQ6VXNlcjU0ODk3NTU3", + "avatar_url": "https://avatars.githubusercontent.com/u/54897557?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/amandatilly", + "html_url": "https://github.com/amandatilly", + "followers_url": "https://api.github.com/users/amandatilly/followers", + "following_url": "https://api.github.com/users/amandatilly/following{/other_user}", + "gists_url": "https://api.github.com/users/amandatilly/gists{/gist_id}", + "starred_url": "https://api.github.com/users/amandatilly/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/amandatilly/subscriptions", + "organizations_url": "https://api.github.com/users/amandatilly/orgs", + "repos_url": "https://api.github.com/users/amandatilly/repos", + "events_url": "https://api.github.com/users/amandatilly/events{/privacy}", + "received_events_url": "https://api.github.com/users/amandatilly/received_events", + "type": "User", + "site_admin": false + }, + "body": "https://confident-liskov-7a9cf4.netlify.app/\r\n\r\nI am super happy with the final result, I am proud that I was able to make it responsive and that I figured out how to use grid. I feel extra proud of my header and box shadows!\r\n\r\nI struggled with a lot of the styling and media queries initially but as I kept figuring things out my confidence grew larger and I feel that I have learned SO much this week. I had no problems with terminal, github or netlify and I am starting to feel more comfortable using them all now.", + "created_at": "2021-08-29T17:19:09Z", + "updated_at": "2021-08-30T14:39:44Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "b2d662139d30efd96413727efd02875a5a0ae4fd", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/222/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/222/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/222/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/fcc4cfe3b8460b454d3f5e1819d4ab9e026b67ce", + "head": { + "label": "amandatilly:master", + "ref": "master", + "sha": "fcc4cfe3b8460b454d3f5e1819d4ab9e026b67ce", + "user": { + "login": "amandatilly", + "id": 54897557, + "node_id": "MDQ6VXNlcjU0ODk3NTU3", + "avatar_url": "https://avatars.githubusercontent.com/u/54897557?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/amandatilly", + "html_url": "https://github.com/amandatilly", + "followers_url": "https://api.github.com/users/amandatilly/followers", + "following_url": "https://api.github.com/users/amandatilly/following{/other_user}", + "gists_url": "https://api.github.com/users/amandatilly/gists{/gist_id}", + "starred_url": "https://api.github.com/users/amandatilly/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/amandatilly/subscriptions", + "organizations_url": "https://api.github.com/users/amandatilly/orgs", + "repos_url": "https://api.github.com/users/amandatilly/repos", + "events_url": "https://api.github.com/users/amandatilly/events{/privacy}", + "received_events_url": "https://api.github.com/users/amandatilly/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399445253, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTk0NDUyNTM=", + "name": "project-news-site", + "full_name": "amandatilly/project-news-site", + "private": false, + "owner": { + "login": "amandatilly", + "id": 54897557, + "node_id": "MDQ6VXNlcjU0ODk3NTU3", + "avatar_url": "https://avatars.githubusercontent.com/u/54897557?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/amandatilly", + "html_url": "https://github.com/amandatilly", + "followers_url": "https://api.github.com/users/amandatilly/followers", + "following_url": "https://api.github.com/users/amandatilly/following{/other_user}", + "gists_url": "https://api.github.com/users/amandatilly/gists{/gist_id}", + "starred_url": "https://api.github.com/users/amandatilly/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/amandatilly/subscriptions", + "organizations_url": "https://api.github.com/users/amandatilly/orgs", + "repos_url": "https://api.github.com/users/amandatilly/repos", + "events_url": "https://api.github.com/users/amandatilly/events{/privacy}", + "received_events_url": "https://api.github.com/users/amandatilly/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/amandatilly/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/amandatilly/project-news-site", + "forks_url": "https://api.github.com/repos/amandatilly/project-news-site/forks", + "keys_url": "https://api.github.com/repos/amandatilly/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/amandatilly/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/amandatilly/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/amandatilly/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/amandatilly/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/amandatilly/project-news-site/events", + "assignees_url": "https://api.github.com/repos/amandatilly/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/amandatilly/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/amandatilly/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/amandatilly/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/amandatilly/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/amandatilly/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/amandatilly/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/amandatilly/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/amandatilly/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/amandatilly/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/amandatilly/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/amandatilly/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/amandatilly/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/amandatilly/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/amandatilly/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/amandatilly/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/amandatilly/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/amandatilly/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/amandatilly/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/amandatilly/project-news-site/merges", + "archive_url": "https://api.github.com/repos/amandatilly/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/amandatilly/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/amandatilly/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/amandatilly/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/amandatilly/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/amandatilly/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/amandatilly/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/amandatilly/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/amandatilly/project-news-site/deployments", + "created_at": "2021-08-24T11:49:02Z", + "updated_at": "2021-08-29T17:16:10Z", + "pushed_at": "2021-08-29T17:16:03Z", + "git_url": "git://github.com/amandatilly/project-news-site.git", + "ssh_url": "git@github.com:amandatilly/project-news-site.git", + "clone_url": "https://github.com/amandatilly/project-news-site.git", + "svn_url": "https://github.com/amandatilly/project-news-site", + "homepage": null, + "size": 26547, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/222" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/222" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/222" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/222/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/222/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/222/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/fcc4cfe3b8460b454d3f5e1819d4ab9e026b67ce" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/220", + "id": 721977837, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTc3ODM3", + "html_url": "https://github.com/Technigo/project-news-site/pull/220", + "diff_url": "https://github.com/Technigo/project-news-site/pull/220.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/220.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/220", + "number": 220, + "state": "open", + "locked": false, + "title": "Newsletter-project-techingo", + "user": { + "login": "Groovedharry", + "id": 83465217, + "node_id": "MDQ6VXNlcjgzNDY1MjE3", + "avatar_url": "https://avatars.githubusercontent.com/u/83465217?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Groovedharry", + "html_url": "https://github.com/Groovedharry", + "followers_url": "https://api.github.com/users/Groovedharry/followers", + "following_url": "https://api.github.com/users/Groovedharry/following{/other_user}", + "gists_url": "https://api.github.com/users/Groovedharry/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Groovedharry/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Groovedharry/subscriptions", + "organizations_url": "https://api.github.com/users/Groovedharry/orgs", + "repos_url": "https://api.github.com/users/Groovedharry/repos", + "events_url": "https://api.github.com/users/Groovedharry/events{/privacy}", + "received_events_url": "https://api.github.com/users/Groovedharry/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-29T16:07:17Z", + "updated_at": "2021-08-31T17:35:21Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "be71350840d56936e018773ffd7f52edb5801b75", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/220/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/220/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/220/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/62319c6743313fb9cb867ea00a83e6f4bb75522c", + "head": { + "label": "Groovedharry:master", + "ref": "master", + "sha": "62319c6743313fb9cb867ea00a83e6f4bb75522c", + "user": { + "login": "Groovedharry", + "id": 83465217, + "node_id": "MDQ6VXNlcjgzNDY1MjE3", + "avatar_url": "https://avatars.githubusercontent.com/u/83465217?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Groovedharry", + "html_url": "https://github.com/Groovedharry", + "followers_url": "https://api.github.com/users/Groovedharry/followers", + "following_url": "https://api.github.com/users/Groovedharry/following{/other_user}", + "gists_url": "https://api.github.com/users/Groovedharry/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Groovedharry/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Groovedharry/subscriptions", + "organizations_url": "https://api.github.com/users/Groovedharry/orgs", + "repos_url": "https://api.github.com/users/Groovedharry/repos", + "events_url": "https://api.github.com/users/Groovedharry/events{/privacy}", + "received_events_url": "https://api.github.com/users/Groovedharry/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 400228307, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDAyMjgzMDc=", + "name": "project-news-site", + "full_name": "Groovedharry/project-news-site", + "private": false, + "owner": { + "login": "Groovedharry", + "id": 83465217, + "node_id": "MDQ6VXNlcjgzNDY1MjE3", + "avatar_url": "https://avatars.githubusercontent.com/u/83465217?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Groovedharry", + "html_url": "https://github.com/Groovedharry", + "followers_url": "https://api.github.com/users/Groovedharry/followers", + "following_url": "https://api.github.com/users/Groovedharry/following{/other_user}", + "gists_url": "https://api.github.com/users/Groovedharry/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Groovedharry/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Groovedharry/subscriptions", + "organizations_url": "https://api.github.com/users/Groovedharry/orgs", + "repos_url": "https://api.github.com/users/Groovedharry/repos", + "events_url": "https://api.github.com/users/Groovedharry/events{/privacy}", + "received_events_url": "https://api.github.com/users/Groovedharry/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Groovedharry/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Groovedharry/project-news-site", + "forks_url": "https://api.github.com/repos/Groovedharry/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Groovedharry/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Groovedharry/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Groovedharry/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Groovedharry/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Groovedharry/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Groovedharry/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Groovedharry/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Groovedharry/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Groovedharry/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Groovedharry/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Groovedharry/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Groovedharry/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Groovedharry/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Groovedharry/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Groovedharry/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Groovedharry/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Groovedharry/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Groovedharry/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Groovedharry/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Groovedharry/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Groovedharry/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Groovedharry/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Groovedharry/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Groovedharry/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Groovedharry/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Groovedharry/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Groovedharry/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Groovedharry/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Groovedharry/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Groovedharry/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Groovedharry/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Groovedharry/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Groovedharry/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Groovedharry/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Groovedharry/project-news-site/deployments", + "created_at": "2021-08-26T16:02:52Z", + "updated_at": "2021-08-29T16:03:43Z", + "pushed_at": "2021-08-29T16:03:41Z", + "git_url": "git://github.com/Groovedharry/project-news-site.git", + "ssh_url": "git@github.com:Groovedharry/project-news-site.git", + "clone_url": "https://github.com/Groovedharry/project-news-site.git", + "svn_url": "https://github.com/Groovedharry/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/220" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/220" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/220" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/220/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/220/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/220/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/62319c6743313fb9cb867ea00a83e6f4bb75522c" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/219", + "id": 721977231, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTc3MjMx", + "html_url": "https://github.com/Technigo/project-news-site/pull/219", + "diff_url": "https://github.com/Technigo/project-news-site/pull/219.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/219.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/219", + "number": 219, + "state": "open", + "locked": false, + "title": "Emelie project-news-site ", + "user": { + "login": "waliem", + "id": 84201089, + "node_id": "MDQ6VXNlcjg0MjAxMDg5", + "avatar_url": "https://avatars.githubusercontent.com/u/84201089?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/waliem", + "html_url": "https://github.com/waliem", + "followers_url": "https://api.github.com/users/waliem/followers", + "following_url": "https://api.github.com/users/waliem/following{/other_user}", + "gists_url": "https://api.github.com/users/waliem/gists{/gist_id}", + "starred_url": "https://api.github.com/users/waliem/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/waliem/subscriptions", + "organizations_url": "https://api.github.com/users/waliem/orgs", + "repos_url": "https://api.github.com/users/waliem/repos", + "events_url": "https://api.github.com/users/waliem/events{/privacy}", + "received_events_url": "https://api.github.com/users/waliem/received_events", + "type": "User", + "site_admin": false + }, + "body": "Link to deployed version on netlify: https://waliem-project-news-site.netlify.app\r\n\r\nProud of manage to create a grid layout that worked with the responsiveness and aligning everything nicely. \r\n\r\nstruggled with the top news section quite a lot. and to figure out how to align the items inside of the containers without messing up the body. ", + "created_at": "2021-08-29T16:03:44Z", + "updated_at": "2021-08-31T07:34:15Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "2aff41d4f4fdc6e558d26fbde8296c5a035fac2d", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/219/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/219/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/219/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/1733c19b0d90c966eb92fc22a2e6d134a5efc58b", + "head": { + "label": "waliem:master", + "ref": "master", + "sha": "1733c19b0d90c966eb92fc22a2e6d134a5efc58b", + "user": { + "login": "waliem", + "id": 84201089, + "node_id": "MDQ6VXNlcjg0MjAxMDg5", + "avatar_url": "https://avatars.githubusercontent.com/u/84201089?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/waliem", + "html_url": "https://github.com/waliem", + "followers_url": "https://api.github.com/users/waliem/followers", + "following_url": "https://api.github.com/users/waliem/following{/other_user}", + "gists_url": "https://api.github.com/users/waliem/gists{/gist_id}", + "starred_url": "https://api.github.com/users/waliem/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/waliem/subscriptions", + "organizations_url": "https://api.github.com/users/waliem/orgs", + "repos_url": "https://api.github.com/users/waliem/repos", + "events_url": "https://api.github.com/users/waliem/events{/privacy}", + "received_events_url": "https://api.github.com/users/waliem/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399096772, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwOTY3NzI=", + "name": "project-news-site", + "full_name": "waliem/project-news-site", + "private": false, + "owner": { + "login": "waliem", + "id": 84201089, + "node_id": "MDQ6VXNlcjg0MjAxMDg5", + "avatar_url": "https://avatars.githubusercontent.com/u/84201089?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/waliem", + "html_url": "https://github.com/waliem", + "followers_url": "https://api.github.com/users/waliem/followers", + "following_url": "https://api.github.com/users/waliem/following{/other_user}", + "gists_url": "https://api.github.com/users/waliem/gists{/gist_id}", + "starred_url": "https://api.github.com/users/waliem/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/waliem/subscriptions", + "organizations_url": "https://api.github.com/users/waliem/orgs", + "repos_url": "https://api.github.com/users/waliem/repos", + "events_url": "https://api.github.com/users/waliem/events{/privacy}", + "received_events_url": "https://api.github.com/users/waliem/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/waliem/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/waliem/project-news-site", + "forks_url": "https://api.github.com/repos/waliem/project-news-site/forks", + "keys_url": "https://api.github.com/repos/waliem/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/waliem/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/waliem/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/waliem/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/waliem/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/waliem/project-news-site/events", + "assignees_url": "https://api.github.com/repos/waliem/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/waliem/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/waliem/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/waliem/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/waliem/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/waliem/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/waliem/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/waliem/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/waliem/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/waliem/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/waliem/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/waliem/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/waliem/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/waliem/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/waliem/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/waliem/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/waliem/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/waliem/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/waliem/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/waliem/project-news-site/merges", + "archive_url": "https://api.github.com/repos/waliem/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/waliem/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/waliem/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/waliem/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/waliem/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/waliem/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/waliem/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/waliem/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/waliem/project-news-site/deployments", + "created_at": "2021-08-23T12:32:48Z", + "updated_at": "2021-08-30T12:40:31Z", + "pushed_at": "2021-08-30T12:40:28Z", + "git_url": "git://github.com/waliem/project-news-site.git", + "ssh_url": "git@github.com:waliem/project-news-site.git", + "clone_url": "https://github.com/waliem/project-news-site.git", + "svn_url": "https://github.com/waliem/project-news-site", + "homepage": null, + "size": 767, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/219" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/219" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/219" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/219/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/219/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/219/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/1733c19b0d90c966eb92fc22a2e6d134a5efc58b" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/218", + "id": 721975242, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTc1MjQy", + "html_url": "https://github.com/Technigo/project-news-site/pull/218", + "diff_url": "https://github.com/Technigo/project-news-site/pull/218.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/218.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/218", + "number": 218, + "state": "open", + "locked": false, + "title": "Kriss Stockhaus", + "user": { + "login": "silvertejp89", + "id": 80514864, + "node_id": "MDQ6VXNlcjgwNTE0ODY0", + "avatar_url": "https://avatars.githubusercontent.com/u/80514864?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/silvertejp89", + "html_url": "https://github.com/silvertejp89", + "followers_url": "https://api.github.com/users/silvertejp89/followers", + "following_url": "https://api.github.com/users/silvertejp89/following{/other_user}", + "gists_url": "https://api.github.com/users/silvertejp89/gists{/gist_id}", + "starred_url": "https://api.github.com/users/silvertejp89/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/silvertejp89/subscriptions", + "organizations_url": "https://api.github.com/users/silvertejp89/orgs", + "repos_url": "https://api.github.com/users/silvertejp89/repos", + "events_url": "https://api.github.com/users/silvertejp89/events{/privacy}", + "received_events_url": "https://api.github.com/users/silvertejp89/received_events", + "type": "User", + "site_admin": false + }, + "body": "https://determined-curran-644911.netlify.app/\r\n\r\nI´m really proud over that I managed to realize quite quickly when I started to get to particular with a not so important part of the website. I think it looks really good. I struggled with getting past the reading and planning, it was like I was afraid of starting to code. I also would like to practise flexbox and grid more, didn´t quite get the hang of it. ", + "created_at": "2021-08-29T15:51:54Z", + "updated_at": "2021-09-01T20:15:43Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "62c593228d1c44ac18a08388e0b13be7fc2962f3", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/218/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/218/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/218/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/ab2378020d0208528461efc68f04b71966c841f8", + "head": { + "label": "silvertejp89:master", + "ref": "master", + "sha": "ab2378020d0208528461efc68f04b71966c841f8", + "user": { + "login": "silvertejp89", + "id": 80514864, + "node_id": "MDQ6VXNlcjgwNTE0ODY0", + "avatar_url": "https://avatars.githubusercontent.com/u/80514864?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/silvertejp89", + "html_url": "https://github.com/silvertejp89", + "followers_url": "https://api.github.com/users/silvertejp89/followers", + "following_url": "https://api.github.com/users/silvertejp89/following{/other_user}", + "gists_url": "https://api.github.com/users/silvertejp89/gists{/gist_id}", + "starred_url": "https://api.github.com/users/silvertejp89/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/silvertejp89/subscriptions", + "organizations_url": "https://api.github.com/users/silvertejp89/orgs", + "repos_url": "https://api.github.com/users/silvertejp89/repos", + "events_url": "https://api.github.com/users/silvertejp89/events{/privacy}", + "received_events_url": "https://api.github.com/users/silvertejp89/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 400179621, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDAxNzk2MjE=", + "name": "project-news-site", + "full_name": "silvertejp89/project-news-site", + "private": false, + "owner": { + "login": "silvertejp89", + "id": 80514864, + "node_id": "MDQ6VXNlcjgwNTE0ODY0", + "avatar_url": "https://avatars.githubusercontent.com/u/80514864?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/silvertejp89", + "html_url": "https://github.com/silvertejp89", + "followers_url": "https://api.github.com/users/silvertejp89/followers", + "following_url": "https://api.github.com/users/silvertejp89/following{/other_user}", + "gists_url": "https://api.github.com/users/silvertejp89/gists{/gist_id}", + "starred_url": "https://api.github.com/users/silvertejp89/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/silvertejp89/subscriptions", + "organizations_url": "https://api.github.com/users/silvertejp89/orgs", + "repos_url": "https://api.github.com/users/silvertejp89/repos", + "events_url": "https://api.github.com/users/silvertejp89/events{/privacy}", + "received_events_url": "https://api.github.com/users/silvertejp89/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/silvertejp89/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/silvertejp89/project-news-site", + "forks_url": "https://api.github.com/repos/silvertejp89/project-news-site/forks", + "keys_url": "https://api.github.com/repos/silvertejp89/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/silvertejp89/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/silvertejp89/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/silvertejp89/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/silvertejp89/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/silvertejp89/project-news-site/events", + "assignees_url": "https://api.github.com/repos/silvertejp89/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/silvertejp89/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/silvertejp89/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/silvertejp89/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/silvertejp89/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/silvertejp89/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/silvertejp89/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/silvertejp89/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/silvertejp89/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/silvertejp89/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/silvertejp89/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/silvertejp89/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/silvertejp89/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/silvertejp89/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/silvertejp89/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/silvertejp89/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/silvertejp89/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/silvertejp89/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/silvertejp89/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/silvertejp89/project-news-site/merges", + "archive_url": "https://api.github.com/repos/silvertejp89/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/silvertejp89/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/silvertejp89/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/silvertejp89/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/silvertejp89/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/silvertejp89/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/silvertejp89/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/silvertejp89/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/silvertejp89/project-news-site/deployments", + "created_at": "2021-08-26T13:30:49Z", + "updated_at": "2021-08-29T15:40:58Z", + "pushed_at": "2021-08-29T15:40:55Z", + "git_url": "git://github.com/silvertejp89/project-news-site.git", + "ssh_url": "git@github.com:silvertejp89/project-news-site.git", + "clone_url": "https://github.com/silvertejp89/project-news-site.git", + "svn_url": "https://github.com/silvertejp89/project-news-site", + "homepage": null, + "size": 2288, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/218" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/218" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/218" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/218/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/218/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/218/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/ab2378020d0208528461efc68f04b71966c841f8" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/217", + "id": 721973048, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTczMDQ4", + "html_url": "https://github.com/Technigo/project-news-site/pull/217", + "diff_url": "https://github.com/Technigo/project-news-site/pull/217.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/217.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/217", + "number": 217, + "state": "open", + "locked": false, + "title": "Week 2", + "user": { + "login": "MariaThomasson", + "id": 81348201, + "node_id": "MDQ6VXNlcjgxMzQ4MjAx", + "avatar_url": "https://avatars.githubusercontent.com/u/81348201?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MariaThomasson", + "html_url": "https://github.com/MariaThomasson", + "followers_url": "https://api.github.com/users/MariaThomasson/followers", + "following_url": "https://api.github.com/users/MariaThomasson/following{/other_user}", + "gists_url": "https://api.github.com/users/MariaThomasson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MariaThomasson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MariaThomasson/subscriptions", + "organizations_url": "https://api.github.com/users/MariaThomasson/orgs", + "repos_url": "https://api.github.com/users/MariaThomasson/repos", + "events_url": "https://api.github.com/users/MariaThomasson/events{/privacy}", + "received_events_url": "https://api.github.com/users/MariaThomasson/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-29T15:38:51Z", + "updated_at": "2021-08-31T17:10:47Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "85a961e7f923558d7b032d30492ec3c83a16e402", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/217/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/217/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/217/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/2c6064b677cc81e232816de388f3cd0179240d69", + "head": { + "label": "MariaThomasson:master", + "ref": "master", + "sha": "2c6064b677cc81e232816de388f3cd0179240d69", + "user": { + "login": "MariaThomasson", + "id": 81348201, + "node_id": "MDQ6VXNlcjgxMzQ4MjAx", + "avatar_url": "https://avatars.githubusercontent.com/u/81348201?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MariaThomasson", + "html_url": "https://github.com/MariaThomasson", + "followers_url": "https://api.github.com/users/MariaThomasson/followers", + "following_url": "https://api.github.com/users/MariaThomasson/following{/other_user}", + "gists_url": "https://api.github.com/users/MariaThomasson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MariaThomasson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MariaThomasson/subscriptions", + "organizations_url": "https://api.github.com/users/MariaThomasson/orgs", + "repos_url": "https://api.github.com/users/MariaThomasson/repos", + "events_url": "https://api.github.com/users/MariaThomasson/events{/privacy}", + "received_events_url": "https://api.github.com/users/MariaThomasson/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 397841036, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTc4NDEwMzY=", + "name": "project-news-site", + "full_name": "MariaThomasson/project-news-site", + "private": false, + "owner": { + "login": "MariaThomasson", + "id": 81348201, + "node_id": "MDQ6VXNlcjgxMzQ4MjAx", + "avatar_url": "https://avatars.githubusercontent.com/u/81348201?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MariaThomasson", + "html_url": "https://github.com/MariaThomasson", + "followers_url": "https://api.github.com/users/MariaThomasson/followers", + "following_url": "https://api.github.com/users/MariaThomasson/following{/other_user}", + "gists_url": "https://api.github.com/users/MariaThomasson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MariaThomasson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MariaThomasson/subscriptions", + "organizations_url": "https://api.github.com/users/MariaThomasson/orgs", + "repos_url": "https://api.github.com/users/MariaThomasson/repos", + "events_url": "https://api.github.com/users/MariaThomasson/events{/privacy}", + "received_events_url": "https://api.github.com/users/MariaThomasson/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/MariaThomasson/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/MariaThomasson/project-news-site", + "forks_url": "https://api.github.com/repos/MariaThomasson/project-news-site/forks", + "keys_url": "https://api.github.com/repos/MariaThomasson/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/MariaThomasson/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/MariaThomasson/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/MariaThomasson/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/MariaThomasson/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/MariaThomasson/project-news-site/events", + "assignees_url": "https://api.github.com/repos/MariaThomasson/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/MariaThomasson/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/MariaThomasson/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/MariaThomasson/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/MariaThomasson/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/MariaThomasson/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/MariaThomasson/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/MariaThomasson/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/MariaThomasson/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/MariaThomasson/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/MariaThomasson/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/MariaThomasson/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/MariaThomasson/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/MariaThomasson/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/MariaThomasson/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/MariaThomasson/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/MariaThomasson/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/MariaThomasson/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/MariaThomasson/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/MariaThomasson/project-news-site/merges", + "archive_url": "https://api.github.com/repos/MariaThomasson/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/MariaThomasson/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/MariaThomasson/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/MariaThomasson/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/MariaThomasson/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/MariaThomasson/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/MariaThomasson/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/MariaThomasson/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/MariaThomasson/project-news-site/deployments", + "created_at": "2021-08-19T06:31:43Z", + "updated_at": "2021-08-30T06:42:10Z", + "pushed_at": "2021-08-30T06:42:07Z", + "git_url": "git://github.com/MariaThomasson/project-news-site.git", + "ssh_url": "git@github.com:MariaThomasson/project-news-site.git", + "clone_url": "https://github.com/MariaThomasson/project-news-site.git", + "svn_url": "https://github.com/MariaThomasson/project-news-site", + "homepage": null, + "size": 1623, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/217" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/217" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/217" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/217/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/217/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/217/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/2c6064b677cc81e232816de388f3cd0179240d69" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/216", + "id": 721966160, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTY2MTYw", + "html_url": "https://github.com/Technigo/project-news-site/pull/216", + "diff_url": "https://github.com/Technigo/project-news-site/pull/216.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/216.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/216", + "number": 216, + "state": "open", + "locked": false, + "title": "Project new site", + "user": { + "login": "Lundgreneddie", + "id": 81567703, + "node_id": "MDQ6VXNlcjgxNTY3NzAz", + "avatar_url": "https://avatars.githubusercontent.com/u/81567703?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Lundgreneddie", + "html_url": "https://github.com/Lundgreneddie", + "followers_url": "https://api.github.com/users/Lundgreneddie/followers", + "following_url": "https://api.github.com/users/Lundgreneddie/following{/other_user}", + "gists_url": "https://api.github.com/users/Lundgreneddie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Lundgreneddie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Lundgreneddie/subscriptions", + "organizations_url": "https://api.github.com/users/Lundgreneddie/orgs", + "repos_url": "https://api.github.com/users/Lundgreneddie/repos", + "events_url": "https://api.github.com/users/Lundgreneddie/events{/privacy}", + "received_events_url": "https://api.github.com/users/Lundgreneddie/received_events", + "type": "User", + "site_admin": false + }, + "body": "https://silly-elion-b8fbbc.netlify.app/\r\n\r\nProud: It's my first personal project, I'm proud that I got it done :D \r\n\r\nStuggle: I learned first hand that planning is crucial, wont be making the same mistakes again atleast :) ", + "created_at": "2021-08-29T14:56:37Z", + "updated_at": "2021-09-25T17:17:05Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "07e770445ee976d5ffa5cf664586266e9b2d9353", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/216/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/216/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/216/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/5fc498e3d67d22512d2ecc81ef1c51b2acf14b10", + "head": { + "label": "Lundgreneddie:master", + "ref": "master", + "sha": "5fc498e3d67d22512d2ecc81ef1c51b2acf14b10", + "user": { + "login": "Lundgreneddie", + "id": 81567703, + "node_id": "MDQ6VXNlcjgxNTY3NzAz", + "avatar_url": "https://avatars.githubusercontent.com/u/81567703?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Lundgreneddie", + "html_url": "https://github.com/Lundgreneddie", + "followers_url": "https://api.github.com/users/Lundgreneddie/followers", + "following_url": "https://api.github.com/users/Lundgreneddie/following{/other_user}", + "gists_url": "https://api.github.com/users/Lundgreneddie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Lundgreneddie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Lundgreneddie/subscriptions", + "organizations_url": "https://api.github.com/users/Lundgreneddie/orgs", + "repos_url": "https://api.github.com/users/Lundgreneddie/repos", + "events_url": "https://api.github.com/users/Lundgreneddie/events{/privacy}", + "received_events_url": "https://api.github.com/users/Lundgreneddie/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399024654, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjQ2NTQ=", + "name": "project-news-site", + "full_name": "Lundgreneddie/project-news-site", + "private": false, + "owner": { + "login": "Lundgreneddie", + "id": 81567703, + "node_id": "MDQ6VXNlcjgxNTY3NzAz", + "avatar_url": "https://avatars.githubusercontent.com/u/81567703?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Lundgreneddie", + "html_url": "https://github.com/Lundgreneddie", + "followers_url": "https://api.github.com/users/Lundgreneddie/followers", + "following_url": "https://api.github.com/users/Lundgreneddie/following{/other_user}", + "gists_url": "https://api.github.com/users/Lundgreneddie/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Lundgreneddie/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Lundgreneddie/subscriptions", + "organizations_url": "https://api.github.com/users/Lundgreneddie/orgs", + "repos_url": "https://api.github.com/users/Lundgreneddie/repos", + "events_url": "https://api.github.com/users/Lundgreneddie/events{/privacy}", + "received_events_url": "https://api.github.com/users/Lundgreneddie/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Lundgreneddie/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Lundgreneddie/project-news-site", + "forks_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/deployments", + "created_at": "2021-08-23T08:15:03Z", + "updated_at": "2021-09-25T17:17:07Z", + "pushed_at": "2021-09-25T17:17:04Z", + "git_url": "git://github.com/Lundgreneddie/project-news-site.git", + "ssh_url": "git@github.com:Lundgreneddie/project-news-site.git", + "clone_url": "https://github.com/Lundgreneddie/project-news-site.git", + "svn_url": "https://github.com/Lundgreneddie/project-news-site", + "homepage": null, + "size": 765, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/216" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/216" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/216" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/216/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/216/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/216/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/5fc498e3d67d22512d2ecc81ef1c51b2acf14b10" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/215", + "id": 721944360, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTQ0MzYw", + "html_url": "https://github.com/Technigo/project-news-site/pull/215", + "diff_url": "https://github.com/Technigo/project-news-site/pull/215.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/215.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/215", + "number": 215, + "state": "open", + "locked": false, + "title": "PriscilaAlfaro project-news-site", + "user": { + "login": "PriscilaAlfaro", + "id": 61456305, + "node_id": "MDQ6VXNlcjYxNDU2MzA1", + "avatar_url": "https://avatars.githubusercontent.com/u/61456305?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PriscilaAlfaro", + "html_url": "https://github.com/PriscilaAlfaro", + "followers_url": "https://api.github.com/users/PriscilaAlfaro/followers", + "following_url": "https://api.github.com/users/PriscilaAlfaro/following{/other_user}", + "gists_url": "https://api.github.com/users/PriscilaAlfaro/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PriscilaAlfaro/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PriscilaAlfaro/subscriptions", + "organizations_url": "https://api.github.com/users/PriscilaAlfaro/orgs", + "repos_url": "https://api.github.com/users/PriscilaAlfaro/repos", + "events_url": "https://api.github.com/users/PriscilaAlfaro/events{/privacy}", + "received_events_url": "https://api.github.com/users/PriscilaAlfaro/received_events", + "type": "User", + "site_admin": false + }, + "body": "Hello, \r\n\r\nWith this project, I had a nice practice with flex-box, grid, and a responsive design based on mobile-first. \r\n\r\nLink to Netlify: https://tech-news-project-technigo.netlify.app/", + "created_at": "2021-08-29T12:37:08Z", + "updated_at": "2021-09-01T15:11:51Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "c7b7cfc7aeacaec65c6026a8ed28aecdd726acf7", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/215/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/215/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/215/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/bfa86867561d4a62966b6de4cd8de4f18c44b9b2", + "head": { + "label": "PriscilaAlfaro:master", + "ref": "master", + "sha": "bfa86867561d4a62966b6de4cd8de4f18c44b9b2", + "user": { + "login": "PriscilaAlfaro", + "id": 61456305, + "node_id": "MDQ6VXNlcjYxNDU2MzA1", + "avatar_url": "https://avatars.githubusercontent.com/u/61456305?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PriscilaAlfaro", + "html_url": "https://github.com/PriscilaAlfaro", + "followers_url": "https://api.github.com/users/PriscilaAlfaro/followers", + "following_url": "https://api.github.com/users/PriscilaAlfaro/following{/other_user}", + "gists_url": "https://api.github.com/users/PriscilaAlfaro/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PriscilaAlfaro/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PriscilaAlfaro/subscriptions", + "organizations_url": "https://api.github.com/users/PriscilaAlfaro/orgs", + "repos_url": "https://api.github.com/users/PriscilaAlfaro/repos", + "events_url": "https://api.github.com/users/PriscilaAlfaro/events{/privacy}", + "received_events_url": "https://api.github.com/users/PriscilaAlfaro/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398274623, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTgyNzQ2MjM=", + "name": "project-news-site", + "full_name": "PriscilaAlfaro/project-news-site", + "private": false, + "owner": { + "login": "PriscilaAlfaro", + "id": 61456305, + "node_id": "MDQ6VXNlcjYxNDU2MzA1", + "avatar_url": "https://avatars.githubusercontent.com/u/61456305?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/PriscilaAlfaro", + "html_url": "https://github.com/PriscilaAlfaro", + "followers_url": "https://api.github.com/users/PriscilaAlfaro/followers", + "following_url": "https://api.github.com/users/PriscilaAlfaro/following{/other_user}", + "gists_url": "https://api.github.com/users/PriscilaAlfaro/gists{/gist_id}", + "starred_url": "https://api.github.com/users/PriscilaAlfaro/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/PriscilaAlfaro/subscriptions", + "organizations_url": "https://api.github.com/users/PriscilaAlfaro/orgs", + "repos_url": "https://api.github.com/users/PriscilaAlfaro/repos", + "events_url": "https://api.github.com/users/PriscilaAlfaro/events{/privacy}", + "received_events_url": "https://api.github.com/users/PriscilaAlfaro/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/PriscilaAlfaro/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site", + "forks_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/forks", + "keys_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/events", + "assignees_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/merges", + "archive_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/deployments", + "created_at": "2021-08-20T12:49:35Z", + "updated_at": "2021-08-29T12:16:08Z", + "pushed_at": "2021-08-29T12:16:05Z", + "git_url": "git://github.com/PriscilaAlfaro/project-news-site.git", + "ssh_url": "git@github.com:PriscilaAlfaro/project-news-site.git", + "clone_url": "https://github.com/PriscilaAlfaro/project-news-site.git", + "svn_url": "https://github.com/PriscilaAlfaro/project-news-site", + "homepage": null, + "size": 1292, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/215" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/215" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/215" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/215/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/215/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/215/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/bfa86867561d4a62966b6de4cd8de4f18c44b9b2" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/214", + "id": 721941418, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTQxNDE4", + "html_url": "https://github.com/Technigo/project-news-site/pull/214", + "diff_url": "https://github.com/Technigo/project-news-site/pull/214.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/214.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/214", + "number": 214, + "state": "open", + "locked": false, + "title": "Finished project-news-site", + "user": { + "login": "themisk84", + "id": 77687868, + "node_id": "MDQ6VXNlcjc3Njg3ODY4", + "avatar_url": "https://avatars.githubusercontent.com/u/77687868?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/themisk84", + "html_url": "https://github.com/themisk84", + "followers_url": "https://api.github.com/users/themisk84/followers", + "following_url": "https://api.github.com/users/themisk84/following{/other_user}", + "gists_url": "https://api.github.com/users/themisk84/gists{/gist_id}", + "starred_url": "https://api.github.com/users/themisk84/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/themisk84/subscriptions", + "organizations_url": "https://api.github.com/users/themisk84/orgs", + "repos_url": "https://api.github.com/users/themisk84/repos", + "events_url": "https://api.github.com/users/themisk84/events{/privacy}", + "received_events_url": "https://api.github.com/users/themisk84/received_events", + "type": "User", + "site_admin": false + }, + "body": "My netlify link\r\nhttps://sharp-murdock-feb5e6.netlify.app/#Music", + "created_at": "2021-08-29T12:15:50Z", + "updated_at": "2021-09-01T14:20:17Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "628faa80635bc4ae56fb0dedc368ab1a348da504", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/214/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/214/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/214/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/bfcd27d55a345b34333c014e1dbef93b7def7715", + "head": { + "label": "themisk84:master", + "ref": "master", + "sha": "bfcd27d55a345b34333c014e1dbef93b7def7715", + "user": { + "login": "themisk84", + "id": 77687868, + "node_id": "MDQ6VXNlcjc3Njg3ODY4", + "avatar_url": "https://avatars.githubusercontent.com/u/77687868?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/themisk84", + "html_url": "https://github.com/themisk84", + "followers_url": "https://api.github.com/users/themisk84/followers", + "following_url": "https://api.github.com/users/themisk84/following{/other_user}", + "gists_url": "https://api.github.com/users/themisk84/gists{/gist_id}", + "starred_url": "https://api.github.com/users/themisk84/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/themisk84/subscriptions", + "organizations_url": "https://api.github.com/users/themisk84/orgs", + "repos_url": "https://api.github.com/users/themisk84/repos", + "events_url": "https://api.github.com/users/themisk84/events{/privacy}", + "received_events_url": "https://api.github.com/users/themisk84/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399025362, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjUzNjI=", + "name": "project-news-site", + "full_name": "themisk84/project-news-site", + "private": false, + "owner": { + "login": "themisk84", + "id": 77687868, + "node_id": "MDQ6VXNlcjc3Njg3ODY4", + "avatar_url": "https://avatars.githubusercontent.com/u/77687868?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/themisk84", + "html_url": "https://github.com/themisk84", + "followers_url": "https://api.github.com/users/themisk84/followers", + "following_url": "https://api.github.com/users/themisk84/following{/other_user}", + "gists_url": "https://api.github.com/users/themisk84/gists{/gist_id}", + "starred_url": "https://api.github.com/users/themisk84/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/themisk84/subscriptions", + "organizations_url": "https://api.github.com/users/themisk84/orgs", + "repos_url": "https://api.github.com/users/themisk84/repos", + "events_url": "https://api.github.com/users/themisk84/events{/privacy}", + "received_events_url": "https://api.github.com/users/themisk84/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/themisk84/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/themisk84/project-news-site", + "forks_url": "https://api.github.com/repos/themisk84/project-news-site/forks", + "keys_url": "https://api.github.com/repos/themisk84/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/themisk84/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/themisk84/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/themisk84/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/themisk84/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/themisk84/project-news-site/events", + "assignees_url": "https://api.github.com/repos/themisk84/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/themisk84/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/themisk84/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/themisk84/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/themisk84/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/themisk84/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/themisk84/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/themisk84/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/themisk84/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/themisk84/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/themisk84/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/themisk84/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/themisk84/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/themisk84/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/themisk84/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/themisk84/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/themisk84/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/themisk84/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/themisk84/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/themisk84/project-news-site/merges", + "archive_url": "https://api.github.com/repos/themisk84/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/themisk84/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/themisk84/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/themisk84/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/themisk84/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/themisk84/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/themisk84/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/themisk84/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/themisk84/project-news-site/deployments", + "created_at": "2021-08-23T08:17:37Z", + "updated_at": "2021-08-29T11:56:42Z", + "pushed_at": "2021-08-29T11:56:40Z", + "git_url": "git://github.com/themisk84/project-news-site.git", + "ssh_url": "git@github.com:themisk84/project-news-site.git", + "clone_url": "https://github.com/themisk84/project-news-site.git", + "svn_url": "https://github.com/themisk84/project-news-site", + "homepage": null, + "size": 3277, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/214" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/214" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/214" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/214/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/214/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/214/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/bfcd27d55a345b34333c014e1dbef93b7def7715" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/213", + "id": 721938451, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTM4NDUx", + "html_url": "https://github.com/Technigo/project-news-site/pull/213", + "diff_url": "https://github.com/Technigo/project-news-site/pull/213.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/213.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/213", + "number": 213, + "state": "open", + "locked": false, + "title": "Reinis Kalvins News site", + "user": { + "login": "Meeteyes", + "id": 83075903, + "node_id": "MDQ6VXNlcjgzMDc1OTAz", + "avatar_url": "https://avatars.githubusercontent.com/u/83075903?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Meeteyes", + "html_url": "https://github.com/Meeteyes", + "followers_url": "https://api.github.com/users/Meeteyes/followers", + "following_url": "https://api.github.com/users/Meeteyes/following{/other_user}", + "gists_url": "https://api.github.com/users/Meeteyes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Meeteyes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Meeteyes/subscriptions", + "organizations_url": "https://api.github.com/users/Meeteyes/orgs", + "repos_url": "https://api.github.com/users/Meeteyes/repos", + "events_url": "https://api.github.com/users/Meeteyes/events{/privacy}", + "received_events_url": "https://api.github.com/users/Meeteyes/received_events", + "type": "User", + "site_admin": false + }, + "body": "I tried to experiment with basics from all the concepts covered in this weeks class.", + "created_at": "2021-08-29T11:56:14Z", + "updated_at": "2021-09-01T12:03:20Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "77cffdc18c5ec4522f2261f002118e2da499d47a", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/213/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/213/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/213/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/729bb7e6ed79746e18f45bf324816d94af068096", + "head": { + "label": "Meeteyes:master", + "ref": "master", + "sha": "729bb7e6ed79746e18f45bf324816d94af068096", + "user": { + "login": "Meeteyes", + "id": 83075903, + "node_id": "MDQ6VXNlcjgzMDc1OTAz", + "avatar_url": "https://avatars.githubusercontent.com/u/83075903?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Meeteyes", + "html_url": "https://github.com/Meeteyes", + "followers_url": "https://api.github.com/users/Meeteyes/followers", + "following_url": "https://api.github.com/users/Meeteyes/following{/other_user}", + "gists_url": "https://api.github.com/users/Meeteyes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Meeteyes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Meeteyes/subscriptions", + "organizations_url": "https://api.github.com/users/Meeteyes/orgs", + "repos_url": "https://api.github.com/users/Meeteyes/repos", + "events_url": "https://api.github.com/users/Meeteyes/events{/privacy}", + "received_events_url": "https://api.github.com/users/Meeteyes/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399064743, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwNjQ3NDM=", + "name": "project-news-site", + "full_name": "Meeteyes/project-news-site", + "private": false, + "owner": { + "login": "Meeteyes", + "id": 83075903, + "node_id": "MDQ6VXNlcjgzMDc1OTAz", + "avatar_url": "https://avatars.githubusercontent.com/u/83075903?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Meeteyes", + "html_url": "https://github.com/Meeteyes", + "followers_url": "https://api.github.com/users/Meeteyes/followers", + "following_url": "https://api.github.com/users/Meeteyes/following{/other_user}", + "gists_url": "https://api.github.com/users/Meeteyes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Meeteyes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Meeteyes/subscriptions", + "organizations_url": "https://api.github.com/users/Meeteyes/orgs", + "repos_url": "https://api.github.com/users/Meeteyes/repos", + "events_url": "https://api.github.com/users/Meeteyes/events{/privacy}", + "received_events_url": "https://api.github.com/users/Meeteyes/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Meeteyes/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Meeteyes/project-news-site", + "forks_url": "https://api.github.com/repos/Meeteyes/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Meeteyes/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Meeteyes/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Meeteyes/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Meeteyes/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Meeteyes/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Meeteyes/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Meeteyes/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Meeteyes/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Meeteyes/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Meeteyes/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Meeteyes/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Meeteyes/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Meeteyes/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Meeteyes/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Meeteyes/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Meeteyes/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Meeteyes/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Meeteyes/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Meeteyes/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Meeteyes/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Meeteyes/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Meeteyes/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Meeteyes/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Meeteyes/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Meeteyes/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Meeteyes/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Meeteyes/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Meeteyes/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Meeteyes/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Meeteyes/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Meeteyes/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Meeteyes/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Meeteyes/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Meeteyes/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Meeteyes/project-news-site/deployments", + "created_at": "2021-08-23T10:41:59Z", + "updated_at": "2021-08-29T11:48:30Z", + "pushed_at": "2021-08-29T11:48:28Z", + "git_url": "git://github.com/Meeteyes/project-news-site.git", + "ssh_url": "git@github.com:Meeteyes/project-news-site.git", + "clone_url": "https://github.com/Meeteyes/project-news-site.git", + "svn_url": "https://github.com/Meeteyes/project-news-site", + "homepage": null, + "size": 779, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/213" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/213" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/213" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/213/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/213/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/213/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/729bb7e6ed79746e18f45bf324816d94af068096" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/212", + "id": 721923733, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTIzNzMz", + "html_url": "https://github.com/Technigo/project-news-site/pull/212", + "diff_url": "https://github.com/Technigo/project-news-site/pull/212.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/212.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/212", + "number": 212, + "state": "open", + "locked": false, + "title": "Rebecca Philipson - Project 2", + "user": { + "login": "Rephili", + "id": 72921631, + "node_id": "MDQ6VXNlcjcyOTIxNjMx", + "avatar_url": "https://avatars.githubusercontent.com/u/72921631?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Rephili", + "html_url": "https://github.com/Rephili", + "followers_url": "https://api.github.com/users/Rephili/followers", + "following_url": "https://api.github.com/users/Rephili/following{/other_user}", + "gists_url": "https://api.github.com/users/Rephili/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Rephili/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Rephili/subscriptions", + "organizations_url": "https://api.github.com/users/Rephili/orgs", + "repos_url": "https://api.github.com/users/Rephili/repos", + "events_url": "https://api.github.com/users/Rephili/events{/privacy}", + "received_events_url": "https://api.github.com/users/Rephili/received_events", + "type": "User", + "site_admin": false + }, + "body": "News site", + "created_at": "2021-08-29T10:05:51Z", + "updated_at": "2021-09-18T20:50:35Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "41e612dd340b3f7a67cb3462c3a660978507c986", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/212/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/212/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/212/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/cc861fd6559baa45c1fc687552d33793e1df3644", + "head": { + "label": "Rephili:master", + "ref": "master", + "sha": "cc861fd6559baa45c1fc687552d33793e1df3644", + "user": { + "login": "Rephili", + "id": 72921631, + "node_id": "MDQ6VXNlcjcyOTIxNjMx", + "avatar_url": "https://avatars.githubusercontent.com/u/72921631?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Rephili", + "html_url": "https://github.com/Rephili", + "followers_url": "https://api.github.com/users/Rephili/followers", + "following_url": "https://api.github.com/users/Rephili/following{/other_user}", + "gists_url": "https://api.github.com/users/Rephili/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Rephili/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Rephili/subscriptions", + "organizations_url": "https://api.github.com/users/Rephili/orgs", + "repos_url": "https://api.github.com/users/Rephili/repos", + "events_url": "https://api.github.com/users/Rephili/events{/privacy}", + "received_events_url": "https://api.github.com/users/Rephili/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399719098, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTk3MTkwOTg=", + "name": "project-news-site", + "full_name": "Rephili/project-news-site", + "private": false, + "owner": { + "login": "Rephili", + "id": 72921631, + "node_id": "MDQ6VXNlcjcyOTIxNjMx", + "avatar_url": "https://avatars.githubusercontent.com/u/72921631?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Rephili", + "html_url": "https://github.com/Rephili", + "followers_url": "https://api.github.com/users/Rephili/followers", + "following_url": "https://api.github.com/users/Rephili/following{/other_user}", + "gists_url": "https://api.github.com/users/Rephili/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Rephili/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Rephili/subscriptions", + "organizations_url": "https://api.github.com/users/Rephili/orgs", + "repos_url": "https://api.github.com/users/Rephili/repos", + "events_url": "https://api.github.com/users/Rephili/events{/privacy}", + "received_events_url": "https://api.github.com/users/Rephili/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Rephili/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Rephili/project-news-site", + "forks_url": "https://api.github.com/repos/Rephili/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Rephili/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Rephili/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Rephili/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Rephili/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Rephili/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Rephili/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Rephili/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Rephili/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Rephili/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Rephili/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Rephili/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Rephili/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Rephili/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Rephili/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Rephili/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Rephili/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Rephili/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Rephili/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Rephili/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Rephili/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Rephili/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Rephili/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Rephili/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Rephili/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Rephili/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Rephili/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Rephili/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Rephili/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Rephili/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Rephili/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Rephili/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Rephili/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Rephili/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Rephili/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Rephili/project-news-site/deployments", + "created_at": "2021-08-25T06:50:25Z", + "updated_at": "2021-09-18T20:50:37Z", + "pushed_at": "2021-09-18T20:50:34Z", + "git_url": "git://github.com/Rephili/project-news-site.git", + "ssh_url": "git@github.com:Rephili/project-news-site.git", + "clone_url": "https://github.com/Rephili/project-news-site.git", + "svn_url": "https://github.com/Rephili/project-news-site", + "homepage": null, + "size": 24005, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/212" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/212" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/212" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/212/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/212/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/212/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/cc861fd6559baa45c1fc687552d33793e1df3644" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/211", + "id": 721919984, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTE5OTg0", + "html_url": "https://github.com/Technigo/project-news-site/pull/211", + "diff_url": "https://github.com/Technigo/project-news-site/pull/211.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/211.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/211", + "number": 211, + "state": "open", + "locked": false, + "title": "Project news site Rebecca Blixt", + "user": { + "login": "BritishSwede", + "id": 81031613, + "node_id": "MDQ6VXNlcjgxMDMxNjEz", + "avatar_url": "https://avatars.githubusercontent.com/u/81031613?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BritishSwede", + "html_url": "https://github.com/BritishSwede", + "followers_url": "https://api.github.com/users/BritishSwede/followers", + "following_url": "https://api.github.com/users/BritishSwede/following{/other_user}", + "gists_url": "https://api.github.com/users/BritishSwede/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BritishSwede/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BritishSwede/subscriptions", + "organizations_url": "https://api.github.com/users/BritishSwede/orgs", + "repos_url": "https://api.github.com/users/BritishSwede/repos", + "events_url": "https://api.github.com/users/BritishSwede/events{/privacy}", + "received_events_url": "https://api.github.com/users/BritishSwede/received_events", + "type": "User", + "site_admin": false + }, + "body": "Link to my deployed project: \r\nhttps://britishswede-project-news-site.netlify.app/\r\n\r\nMy reflections on how this weeks project turned out: \r\nBased on the little knowledge I had before I started this project, I'm super happy with the result! If I had some more time I'd work more on the design and add some animations to the site. I'd also look into how to not include the logo in the hover effect. I did do a lot of research on my own, in the future I'm going to ask more questions to save time. I'm also going to make sure I use images that have the same orientation and size from the start of the project to save time and reduce the amount of frustration... ", + "created_at": "2021-08-29T09:36:50Z", + "updated_at": "2021-08-31T16:54:14Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "50da903e2b2286967a1ecde3ba83bc0400111ddf", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/211/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/211/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/211/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/29487f724f4e7df81125ff7f7a9972e06f06a0d4", + "head": { + "label": "BritishSwede:master", + "ref": "master", + "sha": "29487f724f4e7df81125ff7f7a9972e06f06a0d4", + "user": { + "login": "BritishSwede", + "id": 81031613, + "node_id": "MDQ6VXNlcjgxMDMxNjEz", + "avatar_url": "https://avatars.githubusercontent.com/u/81031613?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BritishSwede", + "html_url": "https://github.com/BritishSwede", + "followers_url": "https://api.github.com/users/BritishSwede/followers", + "following_url": "https://api.github.com/users/BritishSwede/following{/other_user}", + "gists_url": "https://api.github.com/users/BritishSwede/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BritishSwede/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BritishSwede/subscriptions", + "organizations_url": "https://api.github.com/users/BritishSwede/orgs", + "repos_url": "https://api.github.com/users/BritishSwede/repos", + "events_url": "https://api.github.com/users/BritishSwede/events{/privacy}", + "received_events_url": "https://api.github.com/users/BritishSwede/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399011146, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMTExNDY=", + "name": "project-news-site", + "full_name": "BritishSwede/project-news-site", + "private": false, + "owner": { + "login": "BritishSwede", + "id": 81031613, + "node_id": "MDQ6VXNlcjgxMDMxNjEz", + "avatar_url": "https://avatars.githubusercontent.com/u/81031613?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BritishSwede", + "html_url": "https://github.com/BritishSwede", + "followers_url": "https://api.github.com/users/BritishSwede/followers", + "following_url": "https://api.github.com/users/BritishSwede/following{/other_user}", + "gists_url": "https://api.github.com/users/BritishSwede/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BritishSwede/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BritishSwede/subscriptions", + "organizations_url": "https://api.github.com/users/BritishSwede/orgs", + "repos_url": "https://api.github.com/users/BritishSwede/repos", + "events_url": "https://api.github.com/users/BritishSwede/events{/privacy}", + "received_events_url": "https://api.github.com/users/BritishSwede/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/BritishSwede/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/BritishSwede/project-news-site", + "forks_url": "https://api.github.com/repos/BritishSwede/project-news-site/forks", + "keys_url": "https://api.github.com/repos/BritishSwede/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/BritishSwede/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/BritishSwede/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/BritishSwede/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/BritishSwede/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/BritishSwede/project-news-site/events", + "assignees_url": "https://api.github.com/repos/BritishSwede/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/BritishSwede/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/BritishSwede/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/BritishSwede/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/BritishSwede/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/BritishSwede/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/BritishSwede/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/BritishSwede/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/BritishSwede/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/BritishSwede/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/BritishSwede/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/BritishSwede/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/BritishSwede/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/BritishSwede/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/BritishSwede/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/BritishSwede/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/BritishSwede/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/BritishSwede/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/BritishSwede/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/BritishSwede/project-news-site/merges", + "archive_url": "https://api.github.com/repos/BritishSwede/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/BritishSwede/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/BritishSwede/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/BritishSwede/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/BritishSwede/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/BritishSwede/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/BritishSwede/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/BritishSwede/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/BritishSwede/project-news-site/deployments", + "created_at": "2021-08-23T07:25:31Z", + "updated_at": "2021-08-29T09:25:11Z", + "pushed_at": "2021-08-29T09:25:08Z", + "git_url": "git://github.com/BritishSwede/project-news-site.git", + "ssh_url": "git@github.com:BritishSwede/project-news-site.git", + "clone_url": "https://github.com/BritishSwede/project-news-site.git", + "svn_url": "https://github.com/BritishSwede/project-news-site", + "homepage": null, + "size": 34261, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/211" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/211" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/211" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/211/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/211/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/211/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/29487f724f4e7df81125ff7f7a9972e06f06a0d4" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/210", + "id": 721918139, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTE4MTM5", + "html_url": "https://github.com/Technigo/project-news-site/pull/210", + "diff_url": "https://github.com/Technigo/project-news-site/pull/210.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/210.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/210", + "number": 210, + "state": "open", + "locked": false, + "title": "Week 2 - Project-news-site -Jessi Nygren Walhed ", + "user": { + "login": "hemmahosjessi", + "id": 38652781, + "node_id": "MDQ6VXNlcjM4NjUyNzgx", + "avatar_url": "https://avatars.githubusercontent.com/u/38652781?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hemmahosjessi", + "html_url": "https://github.com/hemmahosjessi", + "followers_url": "https://api.github.com/users/hemmahosjessi/followers", + "following_url": "https://api.github.com/users/hemmahosjessi/following{/other_user}", + "gists_url": "https://api.github.com/users/hemmahosjessi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hemmahosjessi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hemmahosjessi/subscriptions", + "organizations_url": "https://api.github.com/users/hemmahosjessi/orgs", + "repos_url": "https://api.github.com/users/hemmahosjessi/repos", + "events_url": "https://api.github.com/users/hemmahosjessi/events{/privacy}", + "received_events_url": "https://api.github.com/users/hemmahosjessi/received_events", + "type": "User", + "site_admin": false + }, + "body": "Week 2 ⭐️ \r\nhttps://reverent-shockley-cab6a2.netlify.app/\r\n\r\nMost proud of the fact that I made it! Had a lot of struggle with Flexbox. Think I experience Grid easier. But needs more exploration. ", + "created_at": "2021-08-29T09:22:32Z", + "updated_at": "2021-09-05T20:25:01Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "2362f69b49a47a8c98a79d8ea4c37dd5574a9163", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/210/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/210/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/210/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/534b09a1e4077aca6e037ae4368b04d4a68cc213", + "head": { + "label": "hemmahosjessi:master", + "ref": "master", + "sha": "534b09a1e4077aca6e037ae4368b04d4a68cc213", + "user": { + "login": "hemmahosjessi", + "id": 38652781, + "node_id": "MDQ6VXNlcjM4NjUyNzgx", + "avatar_url": "https://avatars.githubusercontent.com/u/38652781?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hemmahosjessi", + "html_url": "https://github.com/hemmahosjessi", + "followers_url": "https://api.github.com/users/hemmahosjessi/followers", + "following_url": "https://api.github.com/users/hemmahosjessi/following{/other_user}", + "gists_url": "https://api.github.com/users/hemmahosjessi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hemmahosjessi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hemmahosjessi/subscriptions", + "organizations_url": "https://api.github.com/users/hemmahosjessi/orgs", + "repos_url": "https://api.github.com/users/hemmahosjessi/repos", + "events_url": "https://api.github.com/users/hemmahosjessi/events{/privacy}", + "received_events_url": "https://api.github.com/users/hemmahosjessi/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399024667, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjQ2Njc=", + "name": "project-news-site", + "full_name": "hemmahosjessi/project-news-site", + "private": false, + "owner": { + "login": "hemmahosjessi", + "id": 38652781, + "node_id": "MDQ6VXNlcjM4NjUyNzgx", + "avatar_url": "https://avatars.githubusercontent.com/u/38652781?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hemmahosjessi", + "html_url": "https://github.com/hemmahosjessi", + "followers_url": "https://api.github.com/users/hemmahosjessi/followers", + "following_url": "https://api.github.com/users/hemmahosjessi/following{/other_user}", + "gists_url": "https://api.github.com/users/hemmahosjessi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hemmahosjessi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hemmahosjessi/subscriptions", + "organizations_url": "https://api.github.com/users/hemmahosjessi/orgs", + "repos_url": "https://api.github.com/users/hemmahosjessi/repos", + "events_url": "https://api.github.com/users/hemmahosjessi/events{/privacy}", + "received_events_url": "https://api.github.com/users/hemmahosjessi/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/hemmahosjessi/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/hemmahosjessi/project-news-site", + "forks_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/forks", + "keys_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/events", + "assignees_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/merges", + "archive_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/deployments", + "created_at": "2021-08-23T08:15:05Z", + "updated_at": "2021-08-29T16:29:30Z", + "pushed_at": "2021-08-29T16:29:27Z", + "git_url": "git://github.com/hemmahosjessi/project-news-site.git", + "ssh_url": "git@github.com:hemmahosjessi/project-news-site.git", + "clone_url": "https://github.com/hemmahosjessi/project-news-site.git", + "svn_url": "https://github.com/hemmahosjessi/project-news-site", + "homepage": null, + "size": 4290, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/210" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/210" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/210" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/210/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/210/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/210/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/534b09a1e4077aca6e037ae4368b04d4a68cc213" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/209", + "id": 721901022, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTAxMDIy", + "html_url": "https://github.com/Technigo/project-news-site/pull/209", + "diff_url": "https://github.com/Technigo/project-news-site/pull/209.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/209.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/209", + "number": 209, + "state": "open", + "locked": false, + "title": "Week 2 News Site by Lousanne", + "user": { + "login": "loulunds", + "id": 56274821, + "node_id": "MDQ6VXNlcjU2Mjc0ODIx", + "avatar_url": "https://avatars.githubusercontent.com/u/56274821?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/loulunds", + "html_url": "https://github.com/loulunds", + "followers_url": "https://api.github.com/users/loulunds/followers", + "following_url": "https://api.github.com/users/loulunds/following{/other_user}", + "gists_url": "https://api.github.com/users/loulunds/gists{/gist_id}", + "starred_url": "https://api.github.com/users/loulunds/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/loulunds/subscriptions", + "organizations_url": "https://api.github.com/users/loulunds/orgs", + "repos_url": "https://api.github.com/users/loulunds/repos", + "events_url": "https://api.github.com/users/loulunds/events{/privacy}", + "received_events_url": "https://api.github.com/users/loulunds/received_events", + "type": "User", + "site_admin": false + }, + "body": "\r\nI am proud of the project that I did. I know that code is still messy but will improve on writing codes in the future. I realized I complicate things instead of finding simpler ways in doing things. The part that I am most proud of is the how I managed to use Flexbox to change the layout in my website though I still have some problems with the sizing and the stretching of the elements in Ipad Pro view. \r\n\r\nSubmitted by: Lousanne Lundström\r\n\r\n[Fake News Site](https://frosty-bhaskara-292b4c.netlify.app/)", + "created_at": "2021-08-29T07:15:58Z", + "updated_at": "2021-08-30T17:37:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "8dffb46fa0b4a195867d120a56deb21ea7378a27", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/209/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/209/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/209/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/f8691e4348a9060b1a253774d9da1c15ae220deb", + "head": { + "label": "loulunds:master", + "ref": "master", + "sha": "f8691e4348a9060b1a253774d9da1c15ae220deb", + "user": { + "login": "loulunds", + "id": 56274821, + "node_id": "MDQ6VXNlcjU2Mjc0ODIx", + "avatar_url": "https://avatars.githubusercontent.com/u/56274821?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/loulunds", + "html_url": "https://github.com/loulunds", + "followers_url": "https://api.github.com/users/loulunds/followers", + "following_url": "https://api.github.com/users/loulunds/following{/other_user}", + "gists_url": "https://api.github.com/users/loulunds/gists{/gist_id}", + "starred_url": "https://api.github.com/users/loulunds/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/loulunds/subscriptions", + "organizations_url": "https://api.github.com/users/loulunds/orgs", + "repos_url": "https://api.github.com/users/loulunds/repos", + "events_url": "https://api.github.com/users/loulunds/events{/privacy}", + "received_events_url": "https://api.github.com/users/loulunds/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399248698, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkyNDg2OTg=", + "name": "project-news-site", + "full_name": "loulunds/project-news-site", + "private": false, + "owner": { + "login": "loulunds", + "id": 56274821, + "node_id": "MDQ6VXNlcjU2Mjc0ODIx", + "avatar_url": "https://avatars.githubusercontent.com/u/56274821?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/loulunds", + "html_url": "https://github.com/loulunds", + "followers_url": "https://api.github.com/users/loulunds/followers", + "following_url": "https://api.github.com/users/loulunds/following{/other_user}", + "gists_url": "https://api.github.com/users/loulunds/gists{/gist_id}", + "starred_url": "https://api.github.com/users/loulunds/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/loulunds/subscriptions", + "organizations_url": "https://api.github.com/users/loulunds/orgs", + "repos_url": "https://api.github.com/users/loulunds/repos", + "events_url": "https://api.github.com/users/loulunds/events{/privacy}", + "received_events_url": "https://api.github.com/users/loulunds/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/loulunds/project-news-site", + "description": "a news site project mainly for using flexbox and grid using HTML and CSS", + "fork": true, + "url": "https://api.github.com/repos/loulunds/project-news-site", + "forks_url": "https://api.github.com/repos/loulunds/project-news-site/forks", + "keys_url": "https://api.github.com/repos/loulunds/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/loulunds/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/loulunds/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/loulunds/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/loulunds/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/loulunds/project-news-site/events", + "assignees_url": "https://api.github.com/repos/loulunds/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/loulunds/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/loulunds/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/loulunds/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/loulunds/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/loulunds/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/loulunds/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/loulunds/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/loulunds/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/loulunds/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/loulunds/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/loulunds/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/loulunds/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/loulunds/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/loulunds/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/loulunds/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/loulunds/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/loulunds/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/loulunds/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/loulunds/project-news-site/merges", + "archive_url": "https://api.github.com/repos/loulunds/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/loulunds/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/loulunds/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/loulunds/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/loulunds/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/loulunds/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/loulunds/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/loulunds/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/loulunds/project-news-site/deployments", + "created_at": "2021-08-23T21:10:19Z", + "updated_at": "2021-08-29T07:13:45Z", + "pushed_at": "2021-08-29T07:13:42Z", + "git_url": "git://github.com/loulunds/project-news-site.git", + "ssh_url": "git@github.com:loulunds/project-news-site.git", + "clone_url": "https://github.com/loulunds/project-news-site.git", + "svn_url": "https://github.com/loulunds/project-news-site", + "homepage": "https://frosty-bhaskara-292b4c.netlify.app/", + "size": 777, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/209" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/209" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/209" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/209/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/209/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/209/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/f8691e4348a9060b1a253774d9da1c15ae220deb" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/208", + "id": 721899936, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODk5OTM2", + "html_url": "https://github.com/Technigo/project-news-site/pull/208", + "diff_url": "https://github.com/Technigo/project-news-site/pull/208.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/208.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/208", + "number": 208, + "state": "open", + "locked": false, + "title": "Gustav Frid", + "user": { + "login": "gustavfrid", + "id": 49785603, + "node_id": "MDQ6VXNlcjQ5Nzg1NjAz", + "avatar_url": "https://avatars.githubusercontent.com/u/49785603?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gustavfrid", + "html_url": "https://github.com/gustavfrid", + "followers_url": "https://api.github.com/users/gustavfrid/followers", + "following_url": "https://api.github.com/users/gustavfrid/following{/other_user}", + "gists_url": "https://api.github.com/users/gustavfrid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gustavfrid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gustavfrid/subscriptions", + "organizations_url": "https://api.github.com/users/gustavfrid/orgs", + "repos_url": "https://api.github.com/users/gustavfrid/repos", + "events_url": "https://api.github.com/users/gustavfrid/events{/privacy}", + "received_events_url": "https://api.github.com/users/gustavfrid/received_events", + "type": "User", + "site_admin": false + }, + "body": "Link to deployed site:\r\nhttps://gustavfrid-week-2-news-site.netlify.app/", + "created_at": "2021-08-29T07:06:42Z", + "updated_at": "2021-08-31T10:15:24Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "1c0ae02204824de1a9bfe7230658512c96e4639b", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/208/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/208/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/208/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/515dbc36069bc7c085420d19fe0943d7bb5d4932", + "head": { + "label": "gustavfrid:master", + "ref": "master", + "sha": "515dbc36069bc7c085420d19fe0943d7bb5d4932", + "user": { + "login": "gustavfrid", + "id": 49785603, + "node_id": "MDQ6VXNlcjQ5Nzg1NjAz", + "avatar_url": "https://avatars.githubusercontent.com/u/49785603?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gustavfrid", + "html_url": "https://github.com/gustavfrid", + "followers_url": "https://api.github.com/users/gustavfrid/followers", + "following_url": "https://api.github.com/users/gustavfrid/following{/other_user}", + "gists_url": "https://api.github.com/users/gustavfrid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gustavfrid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gustavfrid/subscriptions", + "organizations_url": "https://api.github.com/users/gustavfrid/orgs", + "repos_url": "https://api.github.com/users/gustavfrid/repos", + "events_url": "https://api.github.com/users/gustavfrid/events{/privacy}", + "received_events_url": "https://api.github.com/users/gustavfrid/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 397944462, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTc5NDQ0NjI=", + "name": "project-news-site", + "full_name": "gustavfrid/project-news-site", + "private": false, + "owner": { + "login": "gustavfrid", + "id": 49785603, + "node_id": "MDQ6VXNlcjQ5Nzg1NjAz", + "avatar_url": "https://avatars.githubusercontent.com/u/49785603?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gustavfrid", + "html_url": "https://github.com/gustavfrid", + "followers_url": "https://api.github.com/users/gustavfrid/followers", + "following_url": "https://api.github.com/users/gustavfrid/following{/other_user}", + "gists_url": "https://api.github.com/users/gustavfrid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gustavfrid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gustavfrid/subscriptions", + "organizations_url": "https://api.github.com/users/gustavfrid/orgs", + "repos_url": "https://api.github.com/users/gustavfrid/repos", + "events_url": "https://api.github.com/users/gustavfrid/events{/privacy}", + "received_events_url": "https://api.github.com/users/gustavfrid/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/gustavfrid/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/gustavfrid/project-news-site", + "forks_url": "https://api.github.com/repos/gustavfrid/project-news-site/forks", + "keys_url": "https://api.github.com/repos/gustavfrid/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/gustavfrid/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/gustavfrid/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/gustavfrid/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/gustavfrid/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/gustavfrid/project-news-site/events", + "assignees_url": "https://api.github.com/repos/gustavfrid/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/gustavfrid/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/gustavfrid/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/gustavfrid/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/gustavfrid/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/gustavfrid/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/gustavfrid/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/gustavfrid/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/gustavfrid/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/gustavfrid/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/gustavfrid/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/gustavfrid/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/gustavfrid/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/gustavfrid/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/gustavfrid/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/gustavfrid/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/gustavfrid/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/gustavfrid/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/gustavfrid/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/gustavfrid/project-news-site/merges", + "archive_url": "https://api.github.com/repos/gustavfrid/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/gustavfrid/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/gustavfrid/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/gustavfrid/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/gustavfrid/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/gustavfrid/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/gustavfrid/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/gustavfrid/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/gustavfrid/project-news-site/deployments", + "created_at": "2021-08-19T13:00:45Z", + "updated_at": "2021-08-29T07:04:30Z", + "pushed_at": "2021-08-29T07:04:27Z", + "git_url": "git://github.com/gustavfrid/project-news-site.git", + "ssh_url": "git@github.com:gustavfrid/project-news-site.git", + "clone_url": "https://github.com/gustavfrid/project-news-site.git", + "svn_url": "https://github.com/gustavfrid/project-news-site", + "homepage": null, + "size": 14379, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/208" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/208" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/208" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/208/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/208/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/208/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/515dbc36069bc7c085420d19fe0943d7bb5d4932" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/207", + "id": 721898454, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODk4NDU0", + "html_url": "https://github.com/Technigo/project-news-site/pull/207", + "diff_url": "https://github.com/Technigo/project-news-site/pull/207.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/207.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/207", + "number": 207, + "state": "open", + "locked": false, + "title": "Project news site", + "user": { + "login": "annathunberg", + "id": 83536062, + "node_id": "MDQ6VXNlcjgzNTM2MDYy", + "avatar_url": "https://avatars.githubusercontent.com/u/83536062?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/annathunberg", + "html_url": "https://github.com/annathunberg", + "followers_url": "https://api.github.com/users/annathunberg/followers", + "following_url": "https://api.github.com/users/annathunberg/following{/other_user}", + "gists_url": "https://api.github.com/users/annathunberg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/annathunberg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/annathunberg/subscriptions", + "organizations_url": "https://api.github.com/users/annathunberg/orgs", + "repos_url": "https://api.github.com/users/annathunberg/repos", + "events_url": "https://api.github.com/users/annathunberg/events{/privacy}", + "received_events_url": "https://api.github.com/users/annathunberg/received_events", + "type": "User", + "site_admin": false + }, + "body": "**Millenial by Anna Thunberg**\r\n\r\n**Struggled with:** flexbox, tried making the site using flexbox first, but started over with grid because I felt it was more logical.\r\nI had some issues with the layout (width) of my small grid boxes as well, but I'm pretty happy with it anyways!\r\n\r\n**Most poud of:** That I started early and kept going. That I was organized and commented out different parts of the code for readability (for myself). I'm proud of the process of making a clear visual idea into a real site, and the general appearance of my design.\r\n\r\nLink to my project:\r\nhttps://millenial.netlify.app/", + "created_at": "2021-08-29T06:54:06Z", + "updated_at": "2021-09-14T09:13:05Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "980049883029498c3b0a67d5abeeb2c1cec03662", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/207/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/207/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/207/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/550486de4af629bfbf2a26a7ffc28ed7186a9d33", + "head": { + "label": "annathunberg:master", + "ref": "master", + "sha": "550486de4af629bfbf2a26a7ffc28ed7186a9d33", + "user": { + "login": "annathunberg", + "id": 83536062, + "node_id": "MDQ6VXNlcjgzNTM2MDYy", + "avatar_url": "https://avatars.githubusercontent.com/u/83536062?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/annathunberg", + "html_url": "https://github.com/annathunberg", + "followers_url": "https://api.github.com/users/annathunberg/followers", + "following_url": "https://api.github.com/users/annathunberg/following{/other_user}", + "gists_url": "https://api.github.com/users/annathunberg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/annathunberg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/annathunberg/subscriptions", + "organizations_url": "https://api.github.com/users/annathunberg/orgs", + "repos_url": "https://api.github.com/users/annathunberg/repos", + "events_url": "https://api.github.com/users/annathunberg/events{/privacy}", + "received_events_url": "https://api.github.com/users/annathunberg/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399075358, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwNzUzNTg=", + "name": "project-news-site", + "full_name": "annathunberg/project-news-site", + "private": false, + "owner": { + "login": "annathunberg", + "id": 83536062, + "node_id": "MDQ6VXNlcjgzNTM2MDYy", + "avatar_url": "https://avatars.githubusercontent.com/u/83536062?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/annathunberg", + "html_url": "https://github.com/annathunberg", + "followers_url": "https://api.github.com/users/annathunberg/followers", + "following_url": "https://api.github.com/users/annathunberg/following{/other_user}", + "gists_url": "https://api.github.com/users/annathunberg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/annathunberg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/annathunberg/subscriptions", + "organizations_url": "https://api.github.com/users/annathunberg/orgs", + "repos_url": "https://api.github.com/users/annathunberg/repos", + "events_url": "https://api.github.com/users/annathunberg/events{/privacy}", + "received_events_url": "https://api.github.com/users/annathunberg/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/annathunberg/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/annathunberg/project-news-site", + "forks_url": "https://api.github.com/repos/annathunberg/project-news-site/forks", + "keys_url": "https://api.github.com/repos/annathunberg/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/annathunberg/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/annathunberg/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/annathunberg/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/annathunberg/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/annathunberg/project-news-site/events", + "assignees_url": "https://api.github.com/repos/annathunberg/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/annathunberg/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/annathunberg/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/annathunberg/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/annathunberg/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/annathunberg/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/annathunberg/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/annathunberg/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/annathunberg/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/annathunberg/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/annathunberg/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/annathunberg/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/annathunberg/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/annathunberg/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/annathunberg/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/annathunberg/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/annathunberg/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/annathunberg/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/annathunberg/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/annathunberg/project-news-site/merges", + "archive_url": "https://api.github.com/repos/annathunberg/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/annathunberg/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/annathunberg/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/annathunberg/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/annathunberg/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/annathunberg/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/annathunberg/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/annathunberg/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/annathunberg/project-news-site/deployments", + "created_at": "2021-08-23T11:21:37Z", + "updated_at": "2021-09-14T09:13:08Z", + "pushed_at": "2021-09-14T09:13:04Z", + "git_url": "git://github.com/annathunberg/project-news-site.git", + "ssh_url": "git@github.com:annathunberg/project-news-site.git", + "clone_url": "https://github.com/annathunberg/project-news-site.git", + "svn_url": "https://github.com/annathunberg/project-news-site", + "homepage": null, + "size": 790, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/207" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/207" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/207" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/207/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/207/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/207/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/550486de4af629bfbf2a26a7ffc28ed7186a9d33" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/206", + "id": 721860957, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODYwOTU3", + "html_url": "https://github.com/Technigo/project-news-site/pull/206", + "diff_url": "https://github.com/Technigo/project-news-site/pull/206.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/206.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/206", + "number": 206, + "state": "open", + "locked": false, + "title": "Haru Ahn- Week2 (Build a news site)", + "user": { + "login": "ruruahn", + "id": 81482699, + "node_id": "MDQ6VXNlcjgxNDgyNjk5", + "avatar_url": "https://avatars.githubusercontent.com/u/81482699?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ruruahn", + "html_url": "https://github.com/ruruahn", + "followers_url": "https://api.github.com/users/ruruahn/followers", + "following_url": "https://api.github.com/users/ruruahn/following{/other_user}", + "gists_url": "https://api.github.com/users/ruruahn/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ruruahn/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ruruahn/subscriptions", + "organizations_url": "https://api.github.com/users/ruruahn/orgs", + "repos_url": "https://api.github.com/users/ruruahn/repos", + "events_url": "https://api.github.com/users/ruruahn/events{/privacy}", + "received_events_url": "https://api.github.com/users/ruruahn/received_events", + "type": "User", + "site_admin": false + }, + "body": "I am proud that I have actually finished the projects with minimum requirements met, given that I was having quite hard time following with Live session and explanations.\r\nThe most struggling part was to understand and get used to with hierarchies of the code system. To understand which code to hook the class code was quite difficult for me.\r\nNetflify url: https://frosty-stonebraker-0d4b63.netlify.app", + "created_at": "2021-08-28T23:44:27Z", + "updated_at": "2021-09-17T15:24:12Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "f6c9e1fd7041211e9420dba31cb0cdaf8f2ce4c5", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/206/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/206/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/206/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/15d47c06bad65184aae53676ea3bf5e73e3e1102", + "head": { + "label": "ruruahn:master", + "ref": "master", + "sha": "15d47c06bad65184aae53676ea3bf5e73e3e1102", + "user": { + "login": "ruruahn", + "id": 81482699, + "node_id": "MDQ6VXNlcjgxNDgyNjk5", + "avatar_url": "https://avatars.githubusercontent.com/u/81482699?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ruruahn", + "html_url": "https://github.com/ruruahn", + "followers_url": "https://api.github.com/users/ruruahn/followers", + "following_url": "https://api.github.com/users/ruruahn/following{/other_user}", + "gists_url": "https://api.github.com/users/ruruahn/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ruruahn/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ruruahn/subscriptions", + "organizations_url": "https://api.github.com/users/ruruahn/orgs", + "repos_url": "https://api.github.com/users/ruruahn/repos", + "events_url": "https://api.github.com/users/ruruahn/events{/privacy}", + "received_events_url": "https://api.github.com/users/ruruahn/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399596262, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTk1OTYyNjI=", + "name": "project-news-site", + "full_name": "ruruahn/project-news-site", + "private": false, + "owner": { + "login": "ruruahn", + "id": 81482699, + "node_id": "MDQ6VXNlcjgxNDgyNjk5", + "avatar_url": "https://avatars.githubusercontent.com/u/81482699?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ruruahn", + "html_url": "https://github.com/ruruahn", + "followers_url": "https://api.github.com/users/ruruahn/followers", + "following_url": "https://api.github.com/users/ruruahn/following{/other_user}", + "gists_url": "https://api.github.com/users/ruruahn/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ruruahn/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ruruahn/subscriptions", + "organizations_url": "https://api.github.com/users/ruruahn/orgs", + "repos_url": "https://api.github.com/users/ruruahn/repos", + "events_url": "https://api.github.com/users/ruruahn/events{/privacy}", + "received_events_url": "https://api.github.com/users/ruruahn/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/ruruahn/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/ruruahn/project-news-site", + "forks_url": "https://api.github.com/repos/ruruahn/project-news-site/forks", + "keys_url": "https://api.github.com/repos/ruruahn/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ruruahn/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ruruahn/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/ruruahn/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/ruruahn/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/ruruahn/project-news-site/events", + "assignees_url": "https://api.github.com/repos/ruruahn/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/ruruahn/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/ruruahn/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/ruruahn/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ruruahn/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ruruahn/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ruruahn/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ruruahn/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ruruahn/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/ruruahn/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/ruruahn/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/ruruahn/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/ruruahn/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/ruruahn/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ruruahn/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ruruahn/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ruruahn/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/ruruahn/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/ruruahn/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ruruahn/project-news-site/merges", + "archive_url": "https://api.github.com/repos/ruruahn/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ruruahn/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/ruruahn/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/ruruahn/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ruruahn/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ruruahn/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ruruahn/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/ruruahn/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/ruruahn/project-news-site/deployments", + "created_at": "2021-08-24T20:27:24Z", + "updated_at": "2021-09-17T15:24:14Z", + "pushed_at": "2021-09-17T15:24:10Z", + "git_url": "git://github.com/ruruahn/project-news-site.git", + "ssh_url": "git@github.com:ruruahn/project-news-site.git", + "clone_url": "https://github.com/ruruahn/project-news-site.git", + "svn_url": "https://github.com/ruruahn/project-news-site", + "homepage": null, + "size": 28371, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/206" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/206" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/206" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/206/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/206/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/206/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/15d47c06bad65184aae53676ea3bf5e73e3e1102" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/205", + "id": 721855484, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODU1NDg0", + "html_url": "https://github.com/Technigo/project-news-site/pull/205", + "diff_url": "https://github.com/Technigo/project-news-site/pull/205.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/205.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/205", + "number": 205, + "state": "open", + "locked": false, + "title": "Pinar Demirel Etli news-site", + "user": { + "login": "pdetli", + "id": 74938586, + "node_id": "MDQ6VXNlcjc0OTM4NTg2", + "avatar_url": "https://avatars.githubusercontent.com/u/74938586?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pdetli", + "html_url": "https://github.com/pdetli", + "followers_url": "https://api.github.com/users/pdetli/followers", + "following_url": "https://api.github.com/users/pdetli/following{/other_user}", + "gists_url": "https://api.github.com/users/pdetli/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pdetli/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pdetli/subscriptions", + "organizations_url": "https://api.github.com/users/pdetli/orgs", + "repos_url": "https://api.github.com/users/pdetli/repos", + "events_url": "https://api.github.com/users/pdetli/events{/privacy}", + "received_events_url": "https://api.github.com/users/pdetli/received_events", + "type": "User", + "site_admin": false + }, + "body": "Link to deployed project on Netlify: https://wonderful-spence-2f1e32.netlify.app\r\n\r\nI learned many new concepts like flex box, grid and “mobile first” approach and managed to use them on my first site that I am most proud of.\r\n\r\nThe most challenging part was the responsive navigation bar, especially for tablet-sized devices. \r\n", + "created_at": "2021-08-28T22:41:46Z", + "updated_at": "2021-08-30T20:24:02Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "3f1937e0ea08616650eeaa9865a2ef457b277192", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/205/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/205/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/205/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/b79c790bd246ef5b66fb8994d12352a146150c30", + "head": { + "label": "pdetli:master", + "ref": "master", + "sha": "b79c790bd246ef5b66fb8994d12352a146150c30", + "user": { + "login": "pdetli", + "id": 74938586, + "node_id": "MDQ6VXNlcjc0OTM4NTg2", + "avatar_url": "https://avatars.githubusercontent.com/u/74938586?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pdetli", + "html_url": "https://github.com/pdetli", + "followers_url": "https://api.github.com/users/pdetli/followers", + "following_url": "https://api.github.com/users/pdetli/following{/other_user}", + "gists_url": "https://api.github.com/users/pdetli/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pdetli/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pdetli/subscriptions", + "organizations_url": "https://api.github.com/users/pdetli/orgs", + "repos_url": "https://api.github.com/users/pdetli/repos", + "events_url": "https://api.github.com/users/pdetli/events{/privacy}", + "received_events_url": "https://api.github.com/users/pdetli/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398536165, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg1MzYxNjU=", + "name": "project-news-site", + "full_name": "pdetli/project-news-site", + "private": false, + "owner": { + "login": "pdetli", + "id": 74938586, + "node_id": "MDQ6VXNlcjc0OTM4NTg2", + "avatar_url": "https://avatars.githubusercontent.com/u/74938586?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pdetli", + "html_url": "https://github.com/pdetli", + "followers_url": "https://api.github.com/users/pdetli/followers", + "following_url": "https://api.github.com/users/pdetli/following{/other_user}", + "gists_url": "https://api.github.com/users/pdetli/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pdetli/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pdetli/subscriptions", + "organizations_url": "https://api.github.com/users/pdetli/orgs", + "repos_url": "https://api.github.com/users/pdetli/repos", + "events_url": "https://api.github.com/users/pdetli/events{/privacy}", + "received_events_url": "https://api.github.com/users/pdetli/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/pdetli/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/pdetli/project-news-site", + "forks_url": "https://api.github.com/repos/pdetli/project-news-site/forks", + "keys_url": "https://api.github.com/repos/pdetli/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/pdetli/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/pdetli/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/pdetli/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/pdetli/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/pdetli/project-news-site/events", + "assignees_url": "https://api.github.com/repos/pdetli/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/pdetli/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/pdetli/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/pdetli/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/pdetli/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/pdetli/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/pdetli/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/pdetli/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/pdetli/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/pdetli/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/pdetli/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/pdetli/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/pdetli/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/pdetli/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/pdetli/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/pdetli/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/pdetli/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/pdetli/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/pdetli/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/pdetli/project-news-site/merges", + "archive_url": "https://api.github.com/repos/pdetli/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/pdetli/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/pdetli/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/pdetli/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/pdetli/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/pdetli/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/pdetli/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/pdetli/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/pdetli/project-news-site/deployments", + "created_at": "2021-08-21T11:05:49Z", + "updated_at": "2021-08-30T11:18:00Z", + "pushed_at": "2021-08-30T11:17:57Z", + "git_url": "git://github.com/pdetli/project-news-site.git", + "ssh_url": "git@github.com:pdetli/project-news-site.git", + "clone_url": "https://github.com/pdetli/project-news-site.git", + "svn_url": "https://github.com/pdetli/project-news-site", + "homepage": null, + "size": 28776, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/205" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/205" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/205" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/205/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/205/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/205/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/b79c790bd246ef5b66fb8994d12352a146150c30" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/204", + "id": 721852062, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODUyMDYy", + "html_url": "https://github.com/Technigo/project-news-site/pull/204", + "diff_url": "https://github.com/Technigo/project-news-site/pull/204.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/204.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/204", + "number": 204, + "state": "open", + "locked": false, + "title": " Sabrina Zancotti project week 2 ", + "user": { + "login": "Zancotti", + "id": 83360973, + "node_id": "MDQ6VXNlcjgzMzYwOTcz", + "avatar_url": "https://avatars.githubusercontent.com/u/83360973?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Zancotti", + "html_url": "https://github.com/Zancotti", + "followers_url": "https://api.github.com/users/Zancotti/followers", + "following_url": "https://api.github.com/users/Zancotti/following{/other_user}", + "gists_url": "https://api.github.com/users/Zancotti/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Zancotti/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Zancotti/subscriptions", + "organizations_url": "https://api.github.com/users/Zancotti/orgs", + "repos_url": "https://api.github.com/users/Zancotti/repos", + "events_url": "https://api.github.com/users/Zancotti/events{/privacy}", + "received_events_url": "https://api.github.com/users/Zancotti/received_events", + "type": "User", + "site_admin": false + }, + "body": "Netlify link: https://zancotti-news.netlify.app/\r\n\r\nIm proud of the fact that i succeeded with makeing the whole header for all three medias with just adapting the css for them. It took some hours to understand how to do it without haveing to change in the html. It was also the biggest struggle i had codewise. Another struggle has been me being to eager to get into the codeing so i forgot to plan the project. I think I lost some hours from that, but i learned a lot by doing it that way so not regretting it =D", + "created_at": "2021-08-28T22:05:17Z", + "updated_at": "2021-09-01T07:45:01Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "032d4ab4c3fa31860c65a3651d7a0f82a5ae59e7", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/204/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/204/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/204/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/a5c69cf52cc6ca6c72c9339db3a51d8b22a91d7d", + "head": { + "label": "Zancotti:master", + "ref": "master", + "sha": "a5c69cf52cc6ca6c72c9339db3a51d8b22a91d7d", + "user": { + "login": "Zancotti", + "id": 83360973, + "node_id": "MDQ6VXNlcjgzMzYwOTcz", + "avatar_url": "https://avatars.githubusercontent.com/u/83360973?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Zancotti", + "html_url": "https://github.com/Zancotti", + "followers_url": "https://api.github.com/users/Zancotti/followers", + "following_url": "https://api.github.com/users/Zancotti/following{/other_user}", + "gists_url": "https://api.github.com/users/Zancotti/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Zancotti/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Zancotti/subscriptions", + "organizations_url": "https://api.github.com/users/Zancotti/orgs", + "repos_url": "https://api.github.com/users/Zancotti/repos", + "events_url": "https://api.github.com/users/Zancotti/events{/privacy}", + "received_events_url": "https://api.github.com/users/Zancotti/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 397640950, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTc2NDA5NTA=", + "name": "project-news-site", + "full_name": "Zancotti/project-news-site", + "private": false, + "owner": { + "login": "Zancotti", + "id": 83360973, + "node_id": "MDQ6VXNlcjgzMzYwOTcz", + "avatar_url": "https://avatars.githubusercontent.com/u/83360973?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Zancotti", + "html_url": "https://github.com/Zancotti", + "followers_url": "https://api.github.com/users/Zancotti/followers", + "following_url": "https://api.github.com/users/Zancotti/following{/other_user}", + "gists_url": "https://api.github.com/users/Zancotti/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Zancotti/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Zancotti/subscriptions", + "organizations_url": "https://api.github.com/users/Zancotti/orgs", + "repos_url": "https://api.github.com/users/Zancotti/repos", + "events_url": "https://api.github.com/users/Zancotti/events{/privacy}", + "received_events_url": "https://api.github.com/users/Zancotti/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Zancotti/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Zancotti/project-news-site", + "forks_url": "https://api.github.com/repos/Zancotti/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Zancotti/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Zancotti/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Zancotti/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Zancotti/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Zancotti/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Zancotti/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Zancotti/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Zancotti/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Zancotti/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Zancotti/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Zancotti/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Zancotti/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Zancotti/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Zancotti/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Zancotti/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Zancotti/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Zancotti/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Zancotti/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Zancotti/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Zancotti/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Zancotti/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Zancotti/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Zancotti/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Zancotti/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Zancotti/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Zancotti/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Zancotti/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Zancotti/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Zancotti/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Zancotti/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Zancotti/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Zancotti/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Zancotti/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Zancotti/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Zancotti/project-news-site/deployments", + "created_at": "2021-08-18T15:01:08Z", + "updated_at": "2021-09-01T07:42:54Z", + "pushed_at": "2021-09-01T07:42:51Z", + "git_url": "git://github.com/Zancotti/project-news-site.git", + "ssh_url": "git@github.com:Zancotti/project-news-site.git", + "clone_url": "https://github.com/Zancotti/project-news-site.git", + "svn_url": "https://github.com/Zancotti/project-news-site", + "homepage": null, + "size": 17301, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/204" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/204" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/204" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/204/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/204/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/204/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/a5c69cf52cc6ca6c72c9339db3a51d8b22a91d7d" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/203", + "id": 721841219, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODQxMjE5", + "html_url": "https://github.com/Technigo/project-news-site/pull/203", + "diff_url": "https://github.com/Technigo/project-news-site/pull/203.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/203.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/203", + "number": 203, + "state": "open", + "locked": false, + "title": "My first project", + "user": { + "login": "IdaAspen", + "id": 80949028, + "node_id": "MDQ6VXNlcjgwOTQ5MDI4", + "avatar_url": "https://avatars.githubusercontent.com/u/80949028?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/IdaAspen", + "html_url": "https://github.com/IdaAspen", + "followers_url": "https://api.github.com/users/IdaAspen/followers", + "following_url": "https://api.github.com/users/IdaAspen/following{/other_user}", + "gists_url": "https://api.github.com/users/IdaAspen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/IdaAspen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/IdaAspen/subscriptions", + "organizations_url": "https://api.github.com/users/IdaAspen/orgs", + "repos_url": "https://api.github.com/users/IdaAspen/repos", + "events_url": "https://api.github.com/users/IdaAspen/events{/privacy}", + "received_events_url": "https://api.github.com/users/IdaAspen/received_events", + "type": "User", + "site_admin": false + }, + "body": "It was super fun (and a bit hard to make the design and flexboxes works according to the sketch)!\r\nI am not so proud over the design and colors, but I focused on the responsiveness.\r\nLink to my deployed version: project-news-site-idaaspen.netlify.app", + "created_at": "2021-08-28T20:20:22Z", + "updated_at": "2021-09-20T13:38:14Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "9ca73a03861bd3a2104fb8fbb464e6bd01d5d1dc", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/203/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/203/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/203/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/c8cf91b2b72308f813635fd8cb4f1be36fd182c8", + "head": { + "label": "IdaAspen:master", + "ref": "master", + "sha": "c8cf91b2b72308f813635fd8cb4f1be36fd182c8", + "user": { + "login": "IdaAspen", + "id": 80949028, + "node_id": "MDQ6VXNlcjgwOTQ5MDI4", + "avatar_url": "https://avatars.githubusercontent.com/u/80949028?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/IdaAspen", + "html_url": "https://github.com/IdaAspen", + "followers_url": "https://api.github.com/users/IdaAspen/followers", + "following_url": "https://api.github.com/users/IdaAspen/following{/other_user}", + "gists_url": "https://api.github.com/users/IdaAspen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/IdaAspen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/IdaAspen/subscriptions", + "organizations_url": "https://api.github.com/users/IdaAspen/orgs", + "repos_url": "https://api.github.com/users/IdaAspen/repos", + "events_url": "https://api.github.com/users/IdaAspen/events{/privacy}", + "received_events_url": "https://api.github.com/users/IdaAspen/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398800799, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4MDA3OTk=", + "name": "project-news-site", + "full_name": "IdaAspen/project-news-site", + "private": false, + "owner": { + "login": "IdaAspen", + "id": 80949028, + "node_id": "MDQ6VXNlcjgwOTQ5MDI4", + "avatar_url": "https://avatars.githubusercontent.com/u/80949028?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/IdaAspen", + "html_url": "https://github.com/IdaAspen", + "followers_url": "https://api.github.com/users/IdaAspen/followers", + "following_url": "https://api.github.com/users/IdaAspen/following{/other_user}", + "gists_url": "https://api.github.com/users/IdaAspen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/IdaAspen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/IdaAspen/subscriptions", + "organizations_url": "https://api.github.com/users/IdaAspen/orgs", + "repos_url": "https://api.github.com/users/IdaAspen/repos", + "events_url": "https://api.github.com/users/IdaAspen/events{/privacy}", + "received_events_url": "https://api.github.com/users/IdaAspen/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/IdaAspen/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/IdaAspen/project-news-site", + "forks_url": "https://api.github.com/repos/IdaAspen/project-news-site/forks", + "keys_url": "https://api.github.com/repos/IdaAspen/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/IdaAspen/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/IdaAspen/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/IdaAspen/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/IdaAspen/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/IdaAspen/project-news-site/events", + "assignees_url": "https://api.github.com/repos/IdaAspen/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/IdaAspen/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/IdaAspen/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/IdaAspen/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/IdaAspen/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/IdaAspen/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/IdaAspen/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/IdaAspen/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/IdaAspen/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/IdaAspen/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/IdaAspen/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/IdaAspen/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/IdaAspen/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/IdaAspen/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/IdaAspen/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/IdaAspen/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/IdaAspen/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/IdaAspen/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/IdaAspen/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/IdaAspen/project-news-site/merges", + "archive_url": "https://api.github.com/repos/IdaAspen/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/IdaAspen/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/IdaAspen/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/IdaAspen/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/IdaAspen/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/IdaAspen/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/IdaAspen/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/IdaAspen/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/IdaAspen/project-news-site/deployments", + "created_at": "2021-08-22T13:01:01Z", + "updated_at": "2021-09-20T13:38:16Z", + "pushed_at": "2021-09-20T13:38:13Z", + "git_url": "git://github.com/IdaAspen/project-news-site.git", + "ssh_url": "git@github.com:IdaAspen/project-news-site.git", + "clone_url": "https://github.com/IdaAspen/project-news-site.git", + "svn_url": "https://github.com/IdaAspen/project-news-site", + "homepage": null, + "size": 6631, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/203" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/203" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/203" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/203/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/203/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/203/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/c8cf91b2b72308f813635fd8cb4f1be36fd182c8" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/202", + "id": 721839651, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODM5NjUx", + "html_url": "https://github.com/Technigo/project-news-site/pull/202", + "diff_url": "https://github.com/Technigo/project-news-site/pull/202.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/202.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/202", + "number": 202, + "state": "open", + "locked": false, + "title": "Elsa Bjelekdal week 2", + "user": { + "login": "Elsa-Johanna", + "id": 81694676, + "node_id": "MDQ6VXNlcjgxNjk0Njc2", + "avatar_url": "https://avatars.githubusercontent.com/u/81694676?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Elsa-Johanna", + "html_url": "https://github.com/Elsa-Johanna", + "followers_url": "https://api.github.com/users/Elsa-Johanna/followers", + "following_url": "https://api.github.com/users/Elsa-Johanna/following{/other_user}", + "gists_url": "https://api.github.com/users/Elsa-Johanna/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Elsa-Johanna/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Elsa-Johanna/subscriptions", + "organizations_url": "https://api.github.com/users/Elsa-Johanna/orgs", + "repos_url": "https://api.github.com/users/Elsa-Johanna/repos", + "events_url": "https://api.github.com/users/Elsa-Johanna/events{/privacy}", + "received_events_url": "https://api.github.com/users/Elsa-Johanna/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-28T20:06:15Z", + "updated_at": "2021-09-01T09:28:54Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "12b7f1e04fe6e7ed035bbca2cd9ef0570108a29f", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/202/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/202/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/202/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/313f65a897c831d2190bdd3b7f8286adf778c9ad", + "head": { + "label": "Elsa-Johanna:master", + "ref": "master", + "sha": "313f65a897c831d2190bdd3b7f8286adf778c9ad", + "user": { + "login": "Elsa-Johanna", + "id": 81694676, + "node_id": "MDQ6VXNlcjgxNjk0Njc2", + "avatar_url": "https://avatars.githubusercontent.com/u/81694676?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Elsa-Johanna", + "html_url": "https://github.com/Elsa-Johanna", + "followers_url": "https://api.github.com/users/Elsa-Johanna/followers", + "following_url": "https://api.github.com/users/Elsa-Johanna/following{/other_user}", + "gists_url": "https://api.github.com/users/Elsa-Johanna/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Elsa-Johanna/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Elsa-Johanna/subscriptions", + "organizations_url": "https://api.github.com/users/Elsa-Johanna/orgs", + "repos_url": "https://api.github.com/users/Elsa-Johanna/repos", + "events_url": "https://api.github.com/users/Elsa-Johanna/events{/privacy}", + "received_events_url": "https://api.github.com/users/Elsa-Johanna/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398988577, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg5ODg1Nzc=", + "name": "project-news-site", + "full_name": "Elsa-Johanna/project-news-site", + "private": false, + "owner": { + "login": "Elsa-Johanna", + "id": 81694676, + "node_id": "MDQ6VXNlcjgxNjk0Njc2", + "avatar_url": "https://avatars.githubusercontent.com/u/81694676?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Elsa-Johanna", + "html_url": "https://github.com/Elsa-Johanna", + "followers_url": "https://api.github.com/users/Elsa-Johanna/followers", + "following_url": "https://api.github.com/users/Elsa-Johanna/following{/other_user}", + "gists_url": "https://api.github.com/users/Elsa-Johanna/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Elsa-Johanna/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Elsa-Johanna/subscriptions", + "organizations_url": "https://api.github.com/users/Elsa-Johanna/orgs", + "repos_url": "https://api.github.com/users/Elsa-Johanna/repos", + "events_url": "https://api.github.com/users/Elsa-Johanna/events{/privacy}", + "received_events_url": "https://api.github.com/users/Elsa-Johanna/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Elsa-Johanna/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Elsa-Johanna/project-news-site", + "forks_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/deployments", + "created_at": "2021-08-23T05:52:52Z", + "updated_at": "2021-08-28T20:04:51Z", + "pushed_at": "2021-08-28T20:04:49Z", + "git_url": "git://github.com/Elsa-Johanna/project-news-site.git", + "ssh_url": "git@github.com:Elsa-Johanna/project-news-site.git", + "clone_url": "https://github.com/Elsa-Johanna/project-news-site.git", + "svn_url": "https://github.com/Elsa-Johanna/project-news-site", + "homepage": null, + "size": 6124, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/202" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/202" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/202" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/202/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/202/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/202/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/313f65a897c831d2190bdd3b7f8286adf778c9ad" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/201", + "id": 721838610, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODM4NjEw", + "html_url": "https://github.com/Technigo/project-news-site/pull/201", + "diff_url": "https://github.com/Technigo/project-news-site/pull/201.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/201.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/201", + "number": 201, + "state": "open", + "locked": false, + "title": "Finished news site", + "user": { + "login": "isomoth", + "id": 24917764, + "node_id": "MDQ6VXNlcjI0OTE3NzY0", + "avatar_url": "https://avatars.githubusercontent.com/u/24917764?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/isomoth", + "html_url": "https://github.com/isomoth", + "followers_url": "https://api.github.com/users/isomoth/followers", + "following_url": "https://api.github.com/users/isomoth/following{/other_user}", + "gists_url": "https://api.github.com/users/isomoth/gists{/gist_id}", + "starred_url": "https://api.github.com/users/isomoth/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/isomoth/subscriptions", + "organizations_url": "https://api.github.com/users/isomoth/orgs", + "repos_url": "https://api.github.com/users/isomoth/repos", + "events_url": "https://api.github.com/users/isomoth/events{/privacy}", + "received_events_url": "https://api.github.com/users/isomoth/received_events", + "type": "User", + "site_admin": false + }, + "body": "Link to deployed project: https://nuntii.netlify.app/\r\n\r\nReflections: \r\n\r\n1. DEFINITELY do mobile first next time. During the sketching phase, I designed the site to be desktop-first. Then I realized mid-project that the mobile approach was way more practical. From that point on, I focused more on mobile and the responsiveness started working. \r\n2. The responsiveness of the grid for the news cards was also a challenge, and I suspect the above situation made it more complicated. I ended up doing a solution that isn't consistent between the tablet and desktop versions. (Didn't use auto-fit on desktop, but I did on tablet).\r\n3. I probably need to gather some knowledge on design later. Especially things like styling images and the visual hierarchy of objects. \r\n\r\nThings I like clarify: \r\n\r\nI used a non-semantic approach for a CTA button (class=\"cta-button read-more\") to make it behave like a link. I know that's not semantic, so in the future I'll have to look into achieving that result with pure CSS (without altering the functionality of that element). ", + "created_at": "2021-08-28T19:57:24Z", + "updated_at": "2021-08-31T07:29:59Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "394224786dc89f74ca6874aba4d5ea89869a41ac", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/201/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/201/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/201/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/557ade0746c88cec37c5123746c002187b9f37f6", + "head": { + "label": "isomoth:master", + "ref": "master", + "sha": "557ade0746c88cec37c5123746c002187b9f37f6", + "user": { + "login": "isomoth", + "id": 24917764, + "node_id": "MDQ6VXNlcjI0OTE3NzY0", + "avatar_url": "https://avatars.githubusercontent.com/u/24917764?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/isomoth", + "html_url": "https://github.com/isomoth", + "followers_url": "https://api.github.com/users/isomoth/followers", + "following_url": "https://api.github.com/users/isomoth/following{/other_user}", + "gists_url": "https://api.github.com/users/isomoth/gists{/gist_id}", + "starred_url": "https://api.github.com/users/isomoth/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/isomoth/subscriptions", + "organizations_url": "https://api.github.com/users/isomoth/orgs", + "repos_url": "https://api.github.com/users/isomoth/repos", + "events_url": "https://api.github.com/users/isomoth/events{/privacy}", + "received_events_url": "https://api.github.com/users/isomoth/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398651789, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg2NTE3ODk=", + "name": "project-news-site", + "full_name": "isomoth/project-news-site", + "private": false, + "owner": { + "login": "isomoth", + "id": 24917764, + "node_id": "MDQ6VXNlcjI0OTE3NzY0", + "avatar_url": "https://avatars.githubusercontent.com/u/24917764?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/isomoth", + "html_url": "https://github.com/isomoth", + "followers_url": "https://api.github.com/users/isomoth/followers", + "following_url": "https://api.github.com/users/isomoth/following{/other_user}", + "gists_url": "https://api.github.com/users/isomoth/gists{/gist_id}", + "starred_url": "https://api.github.com/users/isomoth/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/isomoth/subscriptions", + "organizations_url": "https://api.github.com/users/isomoth/orgs", + "repos_url": "https://api.github.com/users/isomoth/repos", + "events_url": "https://api.github.com/users/isomoth/events{/privacy}", + "received_events_url": "https://api.github.com/users/isomoth/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/isomoth/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/isomoth/project-news-site", + "forks_url": "https://api.github.com/repos/isomoth/project-news-site/forks", + "keys_url": "https://api.github.com/repos/isomoth/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/isomoth/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/isomoth/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/isomoth/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/isomoth/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/isomoth/project-news-site/events", + "assignees_url": "https://api.github.com/repos/isomoth/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/isomoth/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/isomoth/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/isomoth/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/isomoth/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/isomoth/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/isomoth/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/isomoth/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/isomoth/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/isomoth/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/isomoth/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/isomoth/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/isomoth/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/isomoth/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/isomoth/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/isomoth/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/isomoth/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/isomoth/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/isomoth/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/isomoth/project-news-site/merges", + "archive_url": "https://api.github.com/repos/isomoth/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/isomoth/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/isomoth/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/isomoth/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/isomoth/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/isomoth/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/isomoth/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/isomoth/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/isomoth/project-news-site/deployments", + "created_at": "2021-08-21T20:36:53Z", + "updated_at": "2021-08-31T07:30:01Z", + "pushed_at": "2021-08-31T07:29:58Z", + "git_url": "git://github.com/isomoth/project-news-site.git", + "ssh_url": "git@github.com:isomoth/project-news-site.git", + "clone_url": "https://github.com/isomoth/project-news-site.git", + "svn_url": "https://github.com/isomoth/project-news-site", + "homepage": null, + "size": 9853, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/201" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/201" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/201" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/201/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/201/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/201/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/557ade0746c88cec37c5123746c002187b9f37f6" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/200", + "id": 721819160, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODE5MTYw", + "html_url": "https://github.com/Technigo/project-news-site/pull/200", + "diff_url": "https://github.com/Technigo/project-news-site/pull/200.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/200.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/200", + "number": 200, + "state": "open", + "locked": false, + "title": "News site project w.2 by Lisa Pousette Blomé", + "user": { + "login": "annaester", + "id": 81302626, + "node_id": "MDQ6VXNlcjgxMzAyNjI2", + "avatar_url": "https://avatars.githubusercontent.com/u/81302626?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/annaester", + "html_url": "https://github.com/annaester", + "followers_url": "https://api.github.com/users/annaester/followers", + "following_url": "https://api.github.com/users/annaester/following{/other_user}", + "gists_url": "https://api.github.com/users/annaester/gists{/gist_id}", + "starred_url": "https://api.github.com/users/annaester/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/annaester/subscriptions", + "organizations_url": "https://api.github.com/users/annaester/orgs", + "repos_url": "https://api.github.com/users/annaester/repos", + "events_url": "https://api.github.com/users/annaester/events{/privacy}", + "received_events_url": "https://api.github.com/users/annaester/received_events", + "type": "User", + "site_admin": false + }, + "body": "https://lisapblome-w2-newssite.netlify.app/\r\n\r\n", + "created_at": "2021-08-28T17:25:00Z", + "updated_at": "2021-09-01T13:15:22Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "b15939a0d5513c63fc5e5f432b8758e48f2ffbdb", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/200/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/200/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/200/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/ff634df3d6388ffc0a2fef64b4532ec948e3b4b1", + "head": { + "label": "annaester:master", + "ref": "master", + "sha": "ff634df3d6388ffc0a2fef64b4532ec948e3b4b1", + "user": { + "login": "annaester", + "id": 81302626, + "node_id": "MDQ6VXNlcjgxMzAyNjI2", + "avatar_url": "https://avatars.githubusercontent.com/u/81302626?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/annaester", + "html_url": "https://github.com/annaester", + "followers_url": "https://api.github.com/users/annaester/followers", + "following_url": "https://api.github.com/users/annaester/following{/other_user}", + "gists_url": "https://api.github.com/users/annaester/gists{/gist_id}", + "starred_url": "https://api.github.com/users/annaester/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/annaester/subscriptions", + "organizations_url": "https://api.github.com/users/annaester/orgs", + "repos_url": "https://api.github.com/users/annaester/repos", + "events_url": "https://api.github.com/users/annaester/events{/privacy}", + "received_events_url": "https://api.github.com/users/annaester/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398831305, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4MzEzMDU=", + "name": "project-news-site", + "full_name": "annaester/project-news-site", + "private": false, + "owner": { + "login": "annaester", + "id": 81302626, + "node_id": "MDQ6VXNlcjgxMzAyNjI2", + "avatar_url": "https://avatars.githubusercontent.com/u/81302626?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/annaester", + "html_url": "https://github.com/annaester", + "followers_url": "https://api.github.com/users/annaester/followers", + "following_url": "https://api.github.com/users/annaester/following{/other_user}", + "gists_url": "https://api.github.com/users/annaester/gists{/gist_id}", + "starred_url": "https://api.github.com/users/annaester/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/annaester/subscriptions", + "organizations_url": "https://api.github.com/users/annaester/orgs", + "repos_url": "https://api.github.com/users/annaester/repos", + "events_url": "https://api.github.com/users/annaester/events{/privacy}", + "received_events_url": "https://api.github.com/users/annaester/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/annaester/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/annaester/project-news-site", + "forks_url": "https://api.github.com/repos/annaester/project-news-site/forks", + "keys_url": "https://api.github.com/repos/annaester/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/annaester/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/annaester/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/annaester/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/annaester/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/annaester/project-news-site/events", + "assignees_url": "https://api.github.com/repos/annaester/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/annaester/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/annaester/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/annaester/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/annaester/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/annaester/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/annaester/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/annaester/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/annaester/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/annaester/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/annaester/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/annaester/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/annaester/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/annaester/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/annaester/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/annaester/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/annaester/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/annaester/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/annaester/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/annaester/project-news-site/merges", + "archive_url": "https://api.github.com/repos/annaester/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/annaester/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/annaester/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/annaester/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/annaester/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/annaester/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/annaester/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/annaester/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/annaester/project-news-site/deployments", + "created_at": "2021-08-22T15:18:27Z", + "updated_at": "2021-08-28T15:54:09Z", + "pushed_at": "2021-08-28T15:54:07Z", + "git_url": "git://github.com/annaester/project-news-site.git", + "ssh_url": "git@github.com:annaester/project-news-site.git", + "clone_url": "https://github.com/annaester/project-news-site.git", + "svn_url": "https://github.com/annaester/project-news-site", + "homepage": null, + "size": 772, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/200" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/200" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/200" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/200/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/200/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/200/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/ff634df3d6388ffc0a2fef64b4532ec948e3b4b1" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/199", + "id": 721810007, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODEwMDA3", + "html_url": "https://github.com/Technigo/project-news-site/pull/199", + "diff_url": "https://github.com/Technigo/project-news-site/pull/199.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/199.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/199", + "number": 199, + "state": "open", + "locked": false, + "title": "Artsy News", + "user": { + "login": "camekman", + "id": 84934176, + "node_id": "MDQ6VXNlcjg0OTM0MTc2", + "avatar_url": "https://avatars.githubusercontent.com/u/84934176?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/camekman", + "html_url": "https://github.com/camekman", + "followers_url": "https://api.github.com/users/camekman/followers", + "following_url": "https://api.github.com/users/camekman/following{/other_user}", + "gists_url": "https://api.github.com/users/camekman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/camekman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/camekman/subscriptions", + "organizations_url": "https://api.github.com/users/camekman/orgs", + "repos_url": "https://api.github.com/users/camekman/repos", + "events_url": "https://api.github.com/users/camekman/events{/privacy}", + "received_events_url": "https://api.github.com/users/camekman/received_events", + "type": "User", + "site_admin": false + }, + "body": "I strated by watching the tutorial videos to learn about boxmodel, grid and flexbox. I practiced the coding on my own and used figma: \" https://www.figma.com/file/k0gTTXylwhEUOFTYfsbFNS/WEEK-2---NEWS-SITE?node-id=0%3A1 \" to create a sketch for the website and the different view alternatives starting with mobile first. \r\nI think I went a bit over my head and confused myself in the code when I combine flexbox and grid layouts and struggled with positioning. I had to take a step back and decided to only use the grid to create the layout of the page. I played around with some hover effects and if I had more time I would have made the images inside the grid container in the same size when displayed in tablet and desktop view. I am proud that the site turned out pretty close to my sketch and I am proud over the hover effects. ", + "created_at": "2021-08-28T16:14:49Z", + "updated_at": "2021-09-02T08:37:08Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "728c928bb7caa8454e99f55a6974da90e93a8adc", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/199/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/199/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/199/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/fd054551af8ca50d54b76de737965f31b033b608", + "head": { + "label": "camekman:master", + "ref": "master", + "sha": "fd054551af8ca50d54b76de737965f31b033b608", + "user": { + "login": "camekman", + "id": 84934176, + "node_id": "MDQ6VXNlcjg0OTM0MTc2", + "avatar_url": "https://avatars.githubusercontent.com/u/84934176?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/camekman", + "html_url": "https://github.com/camekman", + "followers_url": "https://api.github.com/users/camekman/followers", + "following_url": "https://api.github.com/users/camekman/following{/other_user}", + "gists_url": "https://api.github.com/users/camekman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/camekman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/camekman/subscriptions", + "organizations_url": "https://api.github.com/users/camekman/orgs", + "repos_url": "https://api.github.com/users/camekman/repos", + "events_url": "https://api.github.com/users/camekman/events{/privacy}", + "received_events_url": "https://api.github.com/users/camekman/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399025366, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjUzNjY=", + "name": "project-news-site", + "full_name": "camekman/project-news-site", + "private": false, + "owner": { + "login": "camekman", + "id": 84934176, + "node_id": "MDQ6VXNlcjg0OTM0MTc2", + "avatar_url": "https://avatars.githubusercontent.com/u/84934176?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/camekman", + "html_url": "https://github.com/camekman", + "followers_url": "https://api.github.com/users/camekman/followers", + "following_url": "https://api.github.com/users/camekman/following{/other_user}", + "gists_url": "https://api.github.com/users/camekman/gists{/gist_id}", + "starred_url": "https://api.github.com/users/camekman/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/camekman/subscriptions", + "organizations_url": "https://api.github.com/users/camekman/orgs", + "repos_url": "https://api.github.com/users/camekman/repos", + "events_url": "https://api.github.com/users/camekman/events{/privacy}", + "received_events_url": "https://api.github.com/users/camekman/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/camekman/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/camekman/project-news-site", + "forks_url": "https://api.github.com/repos/camekman/project-news-site/forks", + "keys_url": "https://api.github.com/repos/camekman/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/camekman/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/camekman/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/camekman/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/camekman/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/camekman/project-news-site/events", + "assignees_url": "https://api.github.com/repos/camekman/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/camekman/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/camekman/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/camekman/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/camekman/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/camekman/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/camekman/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/camekman/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/camekman/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/camekman/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/camekman/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/camekman/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/camekman/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/camekman/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/camekman/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/camekman/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/camekman/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/camekman/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/camekman/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/camekman/project-news-site/merges", + "archive_url": "https://api.github.com/repos/camekman/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/camekman/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/camekman/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/camekman/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/camekman/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/camekman/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/camekman/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/camekman/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/camekman/project-news-site/deployments", + "created_at": "2021-08-23T08:17:37Z", + "updated_at": "2021-08-28T16:05:34Z", + "pushed_at": "2021-08-28T16:05:31Z", + "git_url": "git://github.com/camekman/project-news-site.git", + "ssh_url": "git@github.com:camekman/project-news-site.git", + "clone_url": "https://github.com/camekman/project-news-site.git", + "svn_url": "https://github.com/camekman/project-news-site", + "homepage": null, + "size": 4621, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/199" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/199" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/199" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/199/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/199/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/199/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/fd054551af8ca50d54b76de737965f31b033b608" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/198", + "id": 721803684, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODAzNjg0", + "html_url": "https://github.com/Technigo/project-news-site/pull/198", + "diff_url": "https://github.com/Technigo/project-news-site/pull/198.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/198.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/198", + "number": 198, + "state": "open", + "locked": false, + "title": "Sofia Willebrand", + "user": { + "login": "sofiawillebrand", + "id": 82705594, + "node_id": "MDQ6VXNlcjgyNzA1NTk0", + "avatar_url": "https://avatars.githubusercontent.com/u/82705594?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sofiawillebrand", + "html_url": "https://github.com/sofiawillebrand", + "followers_url": "https://api.github.com/users/sofiawillebrand/followers", + "following_url": "https://api.github.com/users/sofiawillebrand/following{/other_user}", + "gists_url": "https://api.github.com/users/sofiawillebrand/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sofiawillebrand/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sofiawillebrand/subscriptions", + "organizations_url": "https://api.github.com/users/sofiawillebrand/orgs", + "repos_url": "https://api.github.com/users/sofiawillebrand/repos", + "events_url": "https://api.github.com/users/sofiawillebrand/events{/privacy}", + "received_events_url": "https://api.github.com/users/sofiawillebrand/received_events", + "type": "User", + "site_admin": false + }, + "body": "Most proud of: the final layout. I am very pleased with the way it turned out, and I'm quite satisficed with my code. It might not be the cleanest, but for my first own project I feel very proud. \r\n\r\nBiggest struggles: being able to focus on one thing at a time. I found myself jumping from one thing to another without finishing the thing I started. Also, using git and github, and netlify. All the new things, in general. \r\n\r\nhttps://sofiawillebrand-week2-news-site.netlify.app/", + "created_at": "2021-08-28T15:30:23Z", + "updated_at": "2021-08-31T13:07:18Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "68792e09b06cd061105d5148a51063956d697393", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/198/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/198/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/198/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/b3a04e1f1825de742097df24fd4ac3ae15eabc77", + "head": { + "label": "sofiawillebrand:master", + "ref": "master", + "sha": "b3a04e1f1825de742097df24fd4ac3ae15eabc77", + "user": { + "login": "sofiawillebrand", + "id": 82705594, + "node_id": "MDQ6VXNlcjgyNzA1NTk0", + "avatar_url": "https://avatars.githubusercontent.com/u/82705594?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sofiawillebrand", + "html_url": "https://github.com/sofiawillebrand", + "followers_url": "https://api.github.com/users/sofiawillebrand/followers", + "following_url": "https://api.github.com/users/sofiawillebrand/following{/other_user}", + "gists_url": "https://api.github.com/users/sofiawillebrand/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sofiawillebrand/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sofiawillebrand/subscriptions", + "organizations_url": "https://api.github.com/users/sofiawillebrand/orgs", + "repos_url": "https://api.github.com/users/sofiawillebrand/repos", + "events_url": "https://api.github.com/users/sofiawillebrand/events{/privacy}", + "received_events_url": "https://api.github.com/users/sofiawillebrand/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398794716, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg3OTQ3MTY=", + "name": "project-news-site", + "full_name": "sofiawillebrand/project-news-site", + "private": false, + "owner": { + "login": "sofiawillebrand", + "id": 82705594, + "node_id": "MDQ6VXNlcjgyNzA1NTk0", + "avatar_url": "https://avatars.githubusercontent.com/u/82705594?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sofiawillebrand", + "html_url": "https://github.com/sofiawillebrand", + "followers_url": "https://api.github.com/users/sofiawillebrand/followers", + "following_url": "https://api.github.com/users/sofiawillebrand/following{/other_user}", + "gists_url": "https://api.github.com/users/sofiawillebrand/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sofiawillebrand/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sofiawillebrand/subscriptions", + "organizations_url": "https://api.github.com/users/sofiawillebrand/orgs", + "repos_url": "https://api.github.com/users/sofiawillebrand/repos", + "events_url": "https://api.github.com/users/sofiawillebrand/events{/privacy}", + "received_events_url": "https://api.github.com/users/sofiawillebrand/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/sofiawillebrand/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/sofiawillebrand/project-news-site", + "forks_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/forks", + "keys_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/events", + "assignees_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/merges", + "archive_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/deployments", + "created_at": "2021-08-22T12:29:57Z", + "updated_at": "2021-08-28T15:17:22Z", + "pushed_at": "2021-08-28T15:17:19Z", + "git_url": "git://github.com/sofiawillebrand/project-news-site.git", + "ssh_url": "git@github.com:sofiawillebrand/project-news-site.git", + "clone_url": "https://github.com/sofiawillebrand/project-news-site.git", + "svn_url": "https://github.com/sofiawillebrand/project-news-site", + "homepage": null, + "size": 865, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/198" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/198" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/198" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/198/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/198/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/198/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/b3a04e1f1825de742097df24fd4ac3ae15eabc77" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/197", + "id": 721793444, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzkzNDQ0", + "html_url": "https://github.com/Technigo/project-news-site/pull/197", + "diff_url": "https://github.com/Technigo/project-news-site/pull/197.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/197.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/197", + "number": 197, + "state": "open", + "locked": false, + "title": "Project News Site - The Dog Magazine", + "user": { + "login": "brunsant", + "id": 80712035, + "node_id": "MDQ6VXNlcjgwNzEyMDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/80712035?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/brunsant", + "html_url": "https://github.com/brunsant", + "followers_url": "https://api.github.com/users/brunsant/followers", + "following_url": "https://api.github.com/users/brunsant/following{/other_user}", + "gists_url": "https://api.github.com/users/brunsant/gists{/gist_id}", + "starred_url": "https://api.github.com/users/brunsant/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/brunsant/subscriptions", + "organizations_url": "https://api.github.com/users/brunsant/orgs", + "repos_url": "https://api.github.com/users/brunsant/repos", + "events_url": "https://api.github.com/users/brunsant/events{/privacy}", + "received_events_url": "https://api.github.com/users/brunsant/received_events", + "type": "User", + "site_admin": false + }, + "body": "https://thedogmagazine.netlify.app/\r\n\r\nLows: I had an organized plan in the beginning, but got too much excited when I started coding and got lost in a mess of different codes. I had conflicting data everywhere and decided to start again. I also had a hard time with my footer, but it was actually a problem with another element. \r\n\r\nHighs: When I decided to start again, everything worked out quite easily and I am very proud that I got over that difficult time. The site looks exactly as planned at first, with a few extra touches that made it even better.", + "created_at": "2021-08-28T14:19:25Z", + "updated_at": "2021-08-31T12:23:57Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "a3a8b4c30497e466caedf2f1e12281021f5846ff", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/197/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/197/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/197/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/971a69dec645c336a4f11a3c58a4986b8e576f5d", + "head": { + "label": "brunsant:master", + "ref": "master", + "sha": "971a69dec645c336a4f11a3c58a4986b8e576f5d", + "user": { + "login": "brunsant", + "id": 80712035, + "node_id": "MDQ6VXNlcjgwNzEyMDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/80712035?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/brunsant", + "html_url": "https://github.com/brunsant", + "followers_url": "https://api.github.com/users/brunsant/followers", + "following_url": "https://api.github.com/users/brunsant/following{/other_user}", + "gists_url": "https://api.github.com/users/brunsant/gists{/gist_id}", + "starred_url": "https://api.github.com/users/brunsant/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/brunsant/subscriptions", + "organizations_url": "https://api.github.com/users/brunsant/orgs", + "repos_url": "https://api.github.com/users/brunsant/repos", + "events_url": "https://api.github.com/users/brunsant/events{/privacy}", + "received_events_url": "https://api.github.com/users/brunsant/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 397900963, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTc5MDA5NjM=", + "name": "project-news-site", + "full_name": "brunsant/project-news-site", + "private": false, + "owner": { + "login": "brunsant", + "id": 80712035, + "node_id": "MDQ6VXNlcjgwNzEyMDM1", + "avatar_url": "https://avatars.githubusercontent.com/u/80712035?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/brunsant", + "html_url": "https://github.com/brunsant", + "followers_url": "https://api.github.com/users/brunsant/followers", + "following_url": "https://api.github.com/users/brunsant/following{/other_user}", + "gists_url": "https://api.github.com/users/brunsant/gists{/gist_id}", + "starred_url": "https://api.github.com/users/brunsant/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/brunsant/subscriptions", + "organizations_url": "https://api.github.com/users/brunsant/orgs", + "repos_url": "https://api.github.com/users/brunsant/repos", + "events_url": "https://api.github.com/users/brunsant/events{/privacy}", + "received_events_url": "https://api.github.com/users/brunsant/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/brunsant/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/brunsant/project-news-site", + "forks_url": "https://api.github.com/repos/brunsant/project-news-site/forks", + "keys_url": "https://api.github.com/repos/brunsant/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/brunsant/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/brunsant/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/brunsant/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/brunsant/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/brunsant/project-news-site/events", + "assignees_url": "https://api.github.com/repos/brunsant/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/brunsant/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/brunsant/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/brunsant/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/brunsant/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/brunsant/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/brunsant/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/brunsant/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/brunsant/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/brunsant/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/brunsant/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/brunsant/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/brunsant/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/brunsant/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/brunsant/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/brunsant/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/brunsant/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/brunsant/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/brunsant/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/brunsant/project-news-site/merges", + "archive_url": "https://api.github.com/repos/brunsant/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/brunsant/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/brunsant/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/brunsant/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/brunsant/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/brunsant/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/brunsant/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/brunsant/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/brunsant/project-news-site/deployments", + "created_at": "2021-08-19T10:17:01Z", + "updated_at": "2021-08-28T13:59:37Z", + "pushed_at": "2021-08-28T13:59:34Z", + "git_url": "git://github.com/brunsant/project-news-site.git", + "ssh_url": "git@github.com:brunsant/project-news-site.git", + "clone_url": "https://github.com/brunsant/project-news-site.git", + "svn_url": "https://github.com/brunsant/project-news-site", + "homepage": null, + "size": 1462, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/197" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/197" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/197" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/197/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/197/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/197/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/971a69dec645c336a4f11a3c58a4986b8e576f5d" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/196", + "id": 721791535, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzkxNTM1", + "html_url": "https://github.com/Technigo/project-news-site/pull/196", + "diff_url": "https://github.com/Technigo/project-news-site/pull/196.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/196.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/196", + "number": 196, + "state": "open", + "locked": false, + "title": "Project News Site (Ebba)", + "user": { + "login": "ebbadelsol", + "id": 80672920, + "node_id": "MDQ6VXNlcjgwNjcyOTIw", + "avatar_url": "https://avatars.githubusercontent.com/u/80672920?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ebbadelsol", + "html_url": "https://github.com/ebbadelsol", + "followers_url": "https://api.github.com/users/ebbadelsol/followers", + "following_url": "https://api.github.com/users/ebbadelsol/following{/other_user}", + "gists_url": "https://api.github.com/users/ebbadelsol/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ebbadelsol/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ebbadelsol/subscriptions", + "organizations_url": "https://api.github.com/users/ebbadelsol/orgs", + "repos_url": "https://api.github.com/users/ebbadelsol/repos", + "events_url": "https://api.github.com/users/ebbadelsol/events{/privacy}", + "received_events_url": "https://api.github.com/users/ebbadelsol/received_events", + "type": "User", + "site_admin": false + }, + "body": "# News Site\r\n\r\nThe assignment was to create a responsive news site that contains a header, big news section and a grid of cards with other news. On bigger desktop sized screens, there should be four cards in a row, two in a row on tablets and on mobile, there should just be one card on each row.\r\n\r\n## The problem\r\n\r\nThis is my first individual project and I am proud of what I managed to do and learn in the short amount of time.\r\n\r\nThings I struggled with was how to crop the images to the same aspect ratio without them being stretched or squished to fit and still having the images be responsive. I learned how to use “object fit: cover” and that percentages (%) refers to the parent and vh stands for viewport height and vw stands for viewport width. I also struggled with how I should name the different classes to make them clear for both me and others who looks at my code.\r\n\r\nI’ve also learned how to use CSS Grid and flexbox, how to target a child while hovering a parent, basic CSS animation and a lot more.\r\n\r\nIf I had more time I would also have added a button to the bottom of the text block that says “Read more” and make it appear while hovering the article. I would also like to have the amount of text to be responsive and automatically fill the parent but I think that requires some JavaScript which wasn’t part of the assignment. I would also like to learn how to make a hamburger menu.\r\n\r\n## View it live\r\n\r\nhttps://pensive-noyce-ed8f3b.netlify.app/\r\n", + "created_at": "2021-08-28T14:05:53Z", + "updated_at": "2021-08-31T15:51:52Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "1fb5ccfa1293dccc21632d4f547097ae7f3350dc", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/196/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/196/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/196/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/ae54bf28f83382f65ddf3edde92fe54fae03df0c", + "head": { + "label": "ebbadelsol:master", + "ref": "master", + "sha": "ae54bf28f83382f65ddf3edde92fe54fae03df0c", + "user": { + "login": "ebbadelsol", + "id": 80672920, + "node_id": "MDQ6VXNlcjgwNjcyOTIw", + "avatar_url": "https://avatars.githubusercontent.com/u/80672920?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ebbadelsol", + "html_url": "https://github.com/ebbadelsol", + "followers_url": "https://api.github.com/users/ebbadelsol/followers", + "following_url": "https://api.github.com/users/ebbadelsol/following{/other_user}", + "gists_url": "https://api.github.com/users/ebbadelsol/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ebbadelsol/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ebbadelsol/subscriptions", + "organizations_url": "https://api.github.com/users/ebbadelsol/orgs", + "repos_url": "https://api.github.com/users/ebbadelsol/repos", + "events_url": "https://api.github.com/users/ebbadelsol/events{/privacy}", + "received_events_url": "https://api.github.com/users/ebbadelsol/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398767997, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg3Njc5OTc=", + "name": "project-news-site", + "full_name": "ebbadelsol/project-news-site", + "private": false, + "owner": { + "login": "ebbadelsol", + "id": 80672920, + "node_id": "MDQ6VXNlcjgwNjcyOTIw", + "avatar_url": "https://avatars.githubusercontent.com/u/80672920?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ebbadelsol", + "html_url": "https://github.com/ebbadelsol", + "followers_url": "https://api.github.com/users/ebbadelsol/followers", + "following_url": "https://api.github.com/users/ebbadelsol/following{/other_user}", + "gists_url": "https://api.github.com/users/ebbadelsol/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ebbadelsol/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ebbadelsol/subscriptions", + "organizations_url": "https://api.github.com/users/ebbadelsol/orgs", + "repos_url": "https://api.github.com/users/ebbadelsol/repos", + "events_url": "https://api.github.com/users/ebbadelsol/events{/privacy}", + "received_events_url": "https://api.github.com/users/ebbadelsol/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/ebbadelsol/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/ebbadelsol/project-news-site", + "forks_url": "https://api.github.com/repos/ebbadelsol/project-news-site/forks", + "keys_url": "https://api.github.com/repos/ebbadelsol/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ebbadelsol/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ebbadelsol/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/ebbadelsol/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/ebbadelsol/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/ebbadelsol/project-news-site/events", + "assignees_url": "https://api.github.com/repos/ebbadelsol/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/ebbadelsol/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/ebbadelsol/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/ebbadelsol/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ebbadelsol/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ebbadelsol/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ebbadelsol/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ebbadelsol/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ebbadelsol/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/ebbadelsol/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/ebbadelsol/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/ebbadelsol/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/ebbadelsol/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/ebbadelsol/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ebbadelsol/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ebbadelsol/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ebbadelsol/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/ebbadelsol/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/ebbadelsol/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ebbadelsol/project-news-site/merges", + "archive_url": "https://api.github.com/repos/ebbadelsol/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ebbadelsol/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/ebbadelsol/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/ebbadelsol/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ebbadelsol/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ebbadelsol/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ebbadelsol/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/ebbadelsol/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/ebbadelsol/project-news-site/deployments", + "created_at": "2021-08-22T10:06:05Z", + "updated_at": "2021-08-29T12:37:05Z", + "pushed_at": "2021-08-29T12:37:02Z", + "git_url": "git://github.com/ebbadelsol/project-news-site.git", + "ssh_url": "git@github.com:ebbadelsol/project-news-site.git", + "clone_url": "https://github.com/ebbadelsol/project-news-site.git", + "svn_url": "https://github.com/ebbadelsol/project-news-site", + "homepage": null, + "size": 808, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/196" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/196" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/196" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/196/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/196/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/196/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/ae54bf28f83382f65ddf3edde92fe54fae03df0c" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/195", + "id": 721789583, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzg5NTgz", + "html_url": "https://github.com/Technigo/project-news-site/pull/195", + "diff_url": "https://github.com/Technigo/project-news-site/pull/195.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/195.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/195", + "number": 195, + "state": "open", + "locked": false, + "title": "News Site by Elsa Carlström", + "user": { + "login": "elsisco", + "id": 83236666, + "node_id": "MDQ6VXNlcjgzMjM2NjY2", + "avatar_url": "https://avatars.githubusercontent.com/u/83236666?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/elsisco", + "html_url": "https://github.com/elsisco", + "followers_url": "https://api.github.com/users/elsisco/followers", + "following_url": "https://api.github.com/users/elsisco/following{/other_user}", + "gists_url": "https://api.github.com/users/elsisco/gists{/gist_id}", + "starred_url": "https://api.github.com/users/elsisco/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/elsisco/subscriptions", + "organizations_url": "https://api.github.com/users/elsisco/orgs", + "repos_url": "https://api.github.com/users/elsisco/repos", + "events_url": "https://api.github.com/users/elsisco/events{/privacy}", + "received_events_url": "https://api.github.com/users/elsisco/received_events", + "type": "User", + "site_admin": false + }, + "body": "Netlify link: https://tender-ramanujan-0cd571.netlify.app/\r\n\r\nI'm proud of how well the responsiveness turned out and how much I have learned this week. I struggled with positioning objects inside the news cards and in the header but towards the end of the project I feel like I understood better and could improve the code I made at the start of the project. ", + "created_at": "2021-08-28T13:51:43Z", + "updated_at": "2021-09-13T18:33:47Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "c869f60c2fc162a0b2886dad04fef6b1956d192b", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/195/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/195/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/195/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/86a9d0822618581f704791f49b0c60f9b513d60c", + "head": { + "label": "elsisco:master", + "ref": "master", + "sha": "86a9d0822618581f704791f49b0c60f9b513d60c", + "user": { + "login": "elsisco", + "id": 83236666, + "node_id": "MDQ6VXNlcjgzMjM2NjY2", + "avatar_url": "https://avatars.githubusercontent.com/u/83236666?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/elsisco", + "html_url": "https://github.com/elsisco", + "followers_url": "https://api.github.com/users/elsisco/followers", + "following_url": "https://api.github.com/users/elsisco/following{/other_user}", + "gists_url": "https://api.github.com/users/elsisco/gists{/gist_id}", + "starred_url": "https://api.github.com/users/elsisco/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/elsisco/subscriptions", + "organizations_url": "https://api.github.com/users/elsisco/orgs", + "repos_url": "https://api.github.com/users/elsisco/repos", + "events_url": "https://api.github.com/users/elsisco/events{/privacy}", + "received_events_url": "https://api.github.com/users/elsisco/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399164179, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkxNjQxNzk=", + "name": "project-news-site", + "full_name": "elsisco/project-news-site", + "private": false, + "owner": { + "login": "elsisco", + "id": 83236666, + "node_id": "MDQ6VXNlcjgzMjM2NjY2", + "avatar_url": "https://avatars.githubusercontent.com/u/83236666?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/elsisco", + "html_url": "https://github.com/elsisco", + "followers_url": "https://api.github.com/users/elsisco/followers", + "following_url": "https://api.github.com/users/elsisco/following{/other_user}", + "gists_url": "https://api.github.com/users/elsisco/gists{/gist_id}", + "starred_url": "https://api.github.com/users/elsisco/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/elsisco/subscriptions", + "organizations_url": "https://api.github.com/users/elsisco/orgs", + "repos_url": "https://api.github.com/users/elsisco/repos", + "events_url": "https://api.github.com/users/elsisco/events{/privacy}", + "received_events_url": "https://api.github.com/users/elsisco/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/elsisco/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/elsisco/project-news-site", + "forks_url": "https://api.github.com/repos/elsisco/project-news-site/forks", + "keys_url": "https://api.github.com/repos/elsisco/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/elsisco/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/elsisco/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/elsisco/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/elsisco/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/elsisco/project-news-site/events", + "assignees_url": "https://api.github.com/repos/elsisco/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/elsisco/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/elsisco/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/elsisco/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/elsisco/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/elsisco/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/elsisco/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/elsisco/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/elsisco/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/elsisco/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/elsisco/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/elsisco/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/elsisco/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/elsisco/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/elsisco/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/elsisco/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/elsisco/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/elsisco/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/elsisco/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/elsisco/project-news-site/merges", + "archive_url": "https://api.github.com/repos/elsisco/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/elsisco/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/elsisco/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/elsisco/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/elsisco/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/elsisco/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/elsisco/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/elsisco/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/elsisco/project-news-site/deployments", + "created_at": "2021-08-23T15:58:13Z", + "updated_at": "2021-09-13T18:33:49Z", + "pushed_at": "2021-09-13T18:33:45Z", + "git_url": "git://github.com/elsisco/project-news-site.git", + "ssh_url": "git@github.com:elsisco/project-news-site.git", + "clone_url": "https://github.com/elsisco/project-news-site.git", + "svn_url": "https://github.com/elsisco/project-news-site", + "homepage": null, + "size": 768, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/195" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/195" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/195" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/195/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/195/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/195/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/86a9d0822618581f704791f49b0c60f9b513d60c" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/194", + "id": 721783007, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzgzMDA3", + "html_url": "https://github.com/Technigo/project-news-site/pull/194", + "diff_url": "https://github.com/Technigo/project-news-site/pull/194.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/194.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/194", + "number": 194, + "state": "open", + "locked": false, + "title": "Kara Howes Newspaper project", + "user": { + "login": "KaraHowes", + "id": 70952682, + "node_id": "MDQ6VXNlcjcwOTUyNjgy", + "avatar_url": "https://avatars.githubusercontent.com/u/70952682?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KaraHowes", + "html_url": "https://github.com/KaraHowes", + "followers_url": "https://api.github.com/users/KaraHowes/followers", + "following_url": "https://api.github.com/users/KaraHowes/following{/other_user}", + "gists_url": "https://api.github.com/users/KaraHowes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KaraHowes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KaraHowes/subscriptions", + "organizations_url": "https://api.github.com/users/KaraHowes/orgs", + "repos_url": "https://api.github.com/users/KaraHowes/repos", + "events_url": "https://api.github.com/users/KaraHowes/events{/privacy}", + "received_events_url": "https://api.github.com/users/KaraHowes/received_events", + "type": "User", + "site_admin": false + }, + "body": "Here is my second project, a newspaper site for children. I used flex box to design my page and tried to keep things relatively simple (but hopefully well-executed). \r\n\r\nI have deployed my webpage here\r\n\r\nhttps://app.netlify.com/sites/blissful-visvesvaraya-d44677/overview\r\n\r\nThank you and I hope the code is not too difficult to read!", + "created_at": "2021-08-28T13:04:06Z", + "updated_at": "2021-09-01T07:31:12Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "16512a9f6c428236f19dd6a0d22a3dc9278034b9", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/194/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/194/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/194/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/cbb476c00ef938f714ff6f8a7ba7b2a6be373f88", + "head": { + "label": "KaraHowes:master", + "ref": "master", + "sha": "cbb476c00ef938f714ff6f8a7ba7b2a6be373f88", + "user": { + "login": "KaraHowes", + "id": 70952682, + "node_id": "MDQ6VXNlcjcwOTUyNjgy", + "avatar_url": "https://avatars.githubusercontent.com/u/70952682?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KaraHowes", + "html_url": "https://github.com/KaraHowes", + "followers_url": "https://api.github.com/users/KaraHowes/followers", + "following_url": "https://api.github.com/users/KaraHowes/following{/other_user}", + "gists_url": "https://api.github.com/users/KaraHowes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KaraHowes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KaraHowes/subscriptions", + "organizations_url": "https://api.github.com/users/KaraHowes/orgs", + "repos_url": "https://api.github.com/users/KaraHowes/repos", + "events_url": "https://api.github.com/users/KaraHowes/events{/privacy}", + "received_events_url": "https://api.github.com/users/KaraHowes/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398736480, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg3MzY0ODA=", + "name": "project-news-site", + "full_name": "KaraHowes/project-news-site", + "private": false, + "owner": { + "login": "KaraHowes", + "id": 70952682, + "node_id": "MDQ6VXNlcjcwOTUyNjgy", + "avatar_url": "https://avatars.githubusercontent.com/u/70952682?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KaraHowes", + "html_url": "https://github.com/KaraHowes", + "followers_url": "https://api.github.com/users/KaraHowes/followers", + "following_url": "https://api.github.com/users/KaraHowes/following{/other_user}", + "gists_url": "https://api.github.com/users/KaraHowes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KaraHowes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KaraHowes/subscriptions", + "organizations_url": "https://api.github.com/users/KaraHowes/orgs", + "repos_url": "https://api.github.com/users/KaraHowes/repos", + "events_url": "https://api.github.com/users/KaraHowes/events{/privacy}", + "received_events_url": "https://api.github.com/users/KaraHowes/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/KaraHowes/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/KaraHowes/project-news-site", + "forks_url": "https://api.github.com/repos/KaraHowes/project-news-site/forks", + "keys_url": "https://api.github.com/repos/KaraHowes/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/KaraHowes/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/KaraHowes/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/KaraHowes/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/KaraHowes/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/KaraHowes/project-news-site/events", + "assignees_url": "https://api.github.com/repos/KaraHowes/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/KaraHowes/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/KaraHowes/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/KaraHowes/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/KaraHowes/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/KaraHowes/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/KaraHowes/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/KaraHowes/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/KaraHowes/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/KaraHowes/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/KaraHowes/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/KaraHowes/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/KaraHowes/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/KaraHowes/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/KaraHowes/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/KaraHowes/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/KaraHowes/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/KaraHowes/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/KaraHowes/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/KaraHowes/project-news-site/merges", + "archive_url": "https://api.github.com/repos/KaraHowes/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/KaraHowes/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/KaraHowes/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/KaraHowes/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/KaraHowes/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/KaraHowes/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/KaraHowes/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/KaraHowes/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/KaraHowes/project-news-site/deployments", + "created_at": "2021-08-22T07:06:01Z", + "updated_at": "2021-09-01T07:31:14Z", + "pushed_at": "2021-09-01T07:31:11Z", + "git_url": "git://github.com/KaraHowes/project-news-site.git", + "ssh_url": "git@github.com:KaraHowes/project-news-site.git", + "clone_url": "https://github.com/KaraHowes/project-news-site.git", + "svn_url": "https://github.com/KaraHowes/project-news-site", + "homepage": null, + "size": 17965, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/194" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/194" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/194" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/194/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/194/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/194/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/cbb476c00ef938f714ff6f8a7ba7b2a6be373f88" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/193", + "id": 721766667, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzY2NjY3", + "html_url": "https://github.com/Technigo/project-news-site/pull/193", + "diff_url": "https://github.com/Technigo/project-news-site/pull/193.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/193.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/193", + "number": 193, + "state": "open", + "locked": false, + "title": "Project news site ", + "user": { + "login": "efstasia", + "id": 83775090, + "node_id": "MDQ6VXNlcjgzNzc1MDkw", + "avatar_url": "https://avatars.githubusercontent.com/u/83775090?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/efstasia", + "html_url": "https://github.com/efstasia", + "followers_url": "https://api.github.com/users/efstasia/followers", + "following_url": "https://api.github.com/users/efstasia/following{/other_user}", + "gists_url": "https://api.github.com/users/efstasia/gists{/gist_id}", + "starred_url": "https://api.github.com/users/efstasia/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/efstasia/subscriptions", + "organizations_url": "https://api.github.com/users/efstasia/orgs", + "repos_url": "https://api.github.com/users/efstasia/repos", + "events_url": "https://api.github.com/users/efstasia/events{/privacy}", + "received_events_url": "https://api.github.com/users/efstasia/received_events", + "type": "User", + "site_admin": false + }, + "body": "https://loving-goldberg-e49bb3.netlify.app/\r\n\r\nI'm very proud of trying both grid and flexbox. I'm also very proud of the layout and the responsiveness. \r\nIn the beginning I struggled with the layout and aligning everything, but I managed to fix that by starting all over and eventually creating the webpage two times with both flexbox and grid. ", + "created_at": "2021-08-28T11:00:13Z", + "updated_at": "2021-08-31T22:13:08Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "c01d27f1b84dd6b56fb5aba2371d3d5cba581a86", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/193/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/193/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/193/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/32d6d00a45433cd301da6778e633355c1cf84d5f", + "head": { + "label": "efstasia:master", + "ref": "master", + "sha": "32d6d00a45433cd301da6778e633355c1cf84d5f", + "user": { + "login": "efstasia", + "id": 83775090, + "node_id": "MDQ6VXNlcjgzNzc1MDkw", + "avatar_url": "https://avatars.githubusercontent.com/u/83775090?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/efstasia", + "html_url": "https://github.com/efstasia", + "followers_url": "https://api.github.com/users/efstasia/followers", + "following_url": "https://api.github.com/users/efstasia/following{/other_user}", + "gists_url": "https://api.github.com/users/efstasia/gists{/gist_id}", + "starred_url": "https://api.github.com/users/efstasia/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/efstasia/subscriptions", + "organizations_url": "https://api.github.com/users/efstasia/orgs", + "repos_url": "https://api.github.com/users/efstasia/repos", + "events_url": "https://api.github.com/users/efstasia/events{/privacy}", + "received_events_url": "https://api.github.com/users/efstasia/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 397887646, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTc4ODc2NDY=", + "name": "project-news-site", + "full_name": "efstasia/project-news-site", + "private": false, + "owner": { + "login": "efstasia", + "id": 83775090, + "node_id": "MDQ6VXNlcjgzNzc1MDkw", + "avatar_url": "https://avatars.githubusercontent.com/u/83775090?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/efstasia", + "html_url": "https://github.com/efstasia", + "followers_url": "https://api.github.com/users/efstasia/followers", + "following_url": "https://api.github.com/users/efstasia/following{/other_user}", + "gists_url": "https://api.github.com/users/efstasia/gists{/gist_id}", + "starred_url": "https://api.github.com/users/efstasia/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/efstasia/subscriptions", + "organizations_url": "https://api.github.com/users/efstasia/orgs", + "repos_url": "https://api.github.com/users/efstasia/repos", + "events_url": "https://api.github.com/users/efstasia/events{/privacy}", + "received_events_url": "https://api.github.com/users/efstasia/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/efstasia/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/efstasia/project-news-site", + "forks_url": "https://api.github.com/repos/efstasia/project-news-site/forks", + "keys_url": "https://api.github.com/repos/efstasia/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/efstasia/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/efstasia/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/efstasia/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/efstasia/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/efstasia/project-news-site/events", + "assignees_url": "https://api.github.com/repos/efstasia/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/efstasia/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/efstasia/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/efstasia/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/efstasia/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/efstasia/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/efstasia/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/efstasia/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/efstasia/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/efstasia/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/efstasia/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/efstasia/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/efstasia/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/efstasia/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/efstasia/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/efstasia/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/efstasia/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/efstasia/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/efstasia/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/efstasia/project-news-site/merges", + "archive_url": "https://api.github.com/repos/efstasia/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/efstasia/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/efstasia/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/efstasia/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/efstasia/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/efstasia/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/efstasia/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/efstasia/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/efstasia/project-news-site/deployments", + "created_at": "2021-08-19T09:27:29Z", + "updated_at": "2021-08-31T22:10:24Z", + "pushed_at": "2021-08-31T22:10:21Z", + "git_url": "git://github.com/efstasia/project-news-site.git", + "ssh_url": "git@github.com:efstasia/project-news-site.git", + "clone_url": "https://github.com/efstasia/project-news-site.git", + "svn_url": "https://github.com/efstasia/project-news-site", + "homepage": null, + "size": 4102, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/193" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/193" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/193" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/193/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/193/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/193/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/32d6d00a45433cd301da6778e633355c1cf84d5f" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/192", + "id": 721762841, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzYyODQx", + "html_url": "https://github.com/Technigo/project-news-site/pull/192", + "diff_url": "https://github.com/Technigo/project-news-site/pull/192.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/192.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/192", + "number": 192, + "state": "open", + "locked": false, + "title": "Project 2, responsive newssite.", + "user": { + "login": "hejmaria", + "id": 81552130, + "node_id": "MDQ6VXNlcjgxNTUyMTMw", + "avatar_url": "https://avatars.githubusercontent.com/u/81552130?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hejmaria", + "html_url": "https://github.com/hejmaria", + "followers_url": "https://api.github.com/users/hejmaria/followers", + "following_url": "https://api.github.com/users/hejmaria/following{/other_user}", + "gists_url": "https://api.github.com/users/hejmaria/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hejmaria/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hejmaria/subscriptions", + "organizations_url": "https://api.github.com/users/hejmaria/orgs", + "repos_url": "https://api.github.com/users/hejmaria/repos", + "events_url": "https://api.github.com/users/hejmaria/events{/privacy}", + "received_events_url": "https://api.github.com/users/hejmaria/received_events", + "type": "User", + "site_admin": false + }, + "body": "My first solo project. Learned a lot and liked working mobile-first. \r\n\r\nLink to my deployed project:\r\nhttps://goofy-ride-7c0ed5.netlify.app", + "created_at": "2021-08-28T10:30:29Z", + "updated_at": "2021-08-31T10:21:52Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "22bf06864b7f13694db404d3089aecd126b9e1d9", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/192/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/192/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/192/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/86a38b16e07676ba19a1b3b8f5d591187d0bc3b2", + "head": { + "label": "hejmaria:master", + "ref": "master", + "sha": "86a38b16e07676ba19a1b3b8f5d591187d0bc3b2", + "user": { + "login": "hejmaria", + "id": 81552130, + "node_id": "MDQ6VXNlcjgxNTUyMTMw", + "avatar_url": "https://avatars.githubusercontent.com/u/81552130?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hejmaria", + "html_url": "https://github.com/hejmaria", + "followers_url": "https://api.github.com/users/hejmaria/followers", + "following_url": "https://api.github.com/users/hejmaria/following{/other_user}", + "gists_url": "https://api.github.com/users/hejmaria/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hejmaria/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hejmaria/subscriptions", + "organizations_url": "https://api.github.com/users/hejmaria/orgs", + "repos_url": "https://api.github.com/users/hejmaria/repos", + "events_url": "https://api.github.com/users/hejmaria/events{/privacy}", + "received_events_url": "https://api.github.com/users/hejmaria/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399456917, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTk0NTY5MTc=", + "name": "project-news-site", + "full_name": "hejmaria/project-news-site", + "private": false, + "owner": { + "login": "hejmaria", + "id": 81552130, + "node_id": "MDQ6VXNlcjgxNTUyMTMw", + "avatar_url": "https://avatars.githubusercontent.com/u/81552130?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hejmaria", + "html_url": "https://github.com/hejmaria", + "followers_url": "https://api.github.com/users/hejmaria/followers", + "following_url": "https://api.github.com/users/hejmaria/following{/other_user}", + "gists_url": "https://api.github.com/users/hejmaria/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hejmaria/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hejmaria/subscriptions", + "organizations_url": "https://api.github.com/users/hejmaria/orgs", + "repos_url": "https://api.github.com/users/hejmaria/repos", + "events_url": "https://api.github.com/users/hejmaria/events{/privacy}", + "received_events_url": "https://api.github.com/users/hejmaria/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/hejmaria/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/hejmaria/project-news-site", + "forks_url": "https://api.github.com/repos/hejmaria/project-news-site/forks", + "keys_url": "https://api.github.com/repos/hejmaria/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hejmaria/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hejmaria/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/hejmaria/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/hejmaria/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/hejmaria/project-news-site/events", + "assignees_url": "https://api.github.com/repos/hejmaria/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/hejmaria/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/hejmaria/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/hejmaria/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hejmaria/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hejmaria/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hejmaria/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hejmaria/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hejmaria/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/hejmaria/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/hejmaria/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/hejmaria/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/hejmaria/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/hejmaria/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hejmaria/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hejmaria/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hejmaria/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hejmaria/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/hejmaria/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hejmaria/project-news-site/merges", + "archive_url": "https://api.github.com/repos/hejmaria/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hejmaria/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/hejmaria/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/hejmaria/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hejmaria/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hejmaria/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hejmaria/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/hejmaria/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/hejmaria/project-news-site/deployments", + "created_at": "2021-08-24T12:29:00Z", + "updated_at": "2021-08-29T07:56:28Z", + "pushed_at": "2021-08-29T07:56:25Z", + "git_url": "git://github.com/hejmaria/project-news-site.git", + "ssh_url": "git@github.com:hejmaria/project-news-site.git", + "clone_url": "https://github.com/hejmaria/project-news-site.git", + "svn_url": "https://github.com/hejmaria/project-news-site", + "homepage": null, + "size": 2434, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/192" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/192" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/192" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/192/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/192/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/192/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/86a38b16e07676ba19a1b3b8f5d591187d0bc3b2" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/191", + "id": 721761343, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzYxMzQz", + "html_url": "https://github.com/Technigo/project-news-site/pull/191", + "diff_url": "https://github.com/Technigo/project-news-site/pull/191.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/191.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/191", + "number": 191, + "state": "open", + "locked": false, + "title": "Project News Site by Karoline Mann", + "user": { + "login": "Kaliine", + "id": 80845418, + "node_id": "MDQ6VXNlcjgwODQ1NDE4", + "avatar_url": "https://avatars.githubusercontent.com/u/80845418?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Kaliine", + "html_url": "https://github.com/Kaliine", + "followers_url": "https://api.github.com/users/Kaliine/followers", + "following_url": "https://api.github.com/users/Kaliine/following{/other_user}", + "gists_url": "https://api.github.com/users/Kaliine/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Kaliine/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Kaliine/subscriptions", + "organizations_url": "https://api.github.com/users/Kaliine/orgs", + "repos_url": "https://api.github.com/users/Kaliine/repos", + "events_url": "https://api.github.com/users/Kaliine/events{/privacy}", + "received_events_url": "https://api.github.com/users/Kaliine/received_events", + "type": "User", + "site_admin": false + }, + "body": "Had great fun with this project!", + "created_at": "2021-08-28T10:18:53Z", + "updated_at": "2021-09-08T07:42:15Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "2e4bbb6b667971830add6b330814b8d45e8d25e2", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/191/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/191/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/191/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/0ed222c98ce5a88d22b02db30e2966d601d55823", + "head": { + "label": "Kaliine:master", + "ref": "master", + "sha": "0ed222c98ce5a88d22b02db30e2966d601d55823", + "user": { + "login": "Kaliine", + "id": 80845418, + "node_id": "MDQ6VXNlcjgwODQ1NDE4", + "avatar_url": "https://avatars.githubusercontent.com/u/80845418?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Kaliine", + "html_url": "https://github.com/Kaliine", + "followers_url": "https://api.github.com/users/Kaliine/followers", + "following_url": "https://api.github.com/users/Kaliine/following{/other_user}", + "gists_url": "https://api.github.com/users/Kaliine/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Kaliine/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Kaliine/subscriptions", + "organizations_url": "https://api.github.com/users/Kaliine/orgs", + "repos_url": "https://api.github.com/users/Kaliine/repos", + "events_url": "https://api.github.com/users/Kaliine/events{/privacy}", + "received_events_url": "https://api.github.com/users/Kaliine/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398561497, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTg1NjE0OTc=", + "name": "project-news-site", + "full_name": "Kaliine/project-news-site", + "private": false, + "owner": { + "login": "Kaliine", + "id": 80845418, + "node_id": "MDQ6VXNlcjgwODQ1NDE4", + "avatar_url": "https://avatars.githubusercontent.com/u/80845418?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Kaliine", + "html_url": "https://github.com/Kaliine", + "followers_url": "https://api.github.com/users/Kaliine/followers", + "following_url": "https://api.github.com/users/Kaliine/following{/other_user}", + "gists_url": "https://api.github.com/users/Kaliine/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Kaliine/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Kaliine/subscriptions", + "organizations_url": "https://api.github.com/users/Kaliine/orgs", + "repos_url": "https://api.github.com/users/Kaliine/repos", + "events_url": "https://api.github.com/users/Kaliine/events{/privacy}", + "received_events_url": "https://api.github.com/users/Kaliine/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Kaliine/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Kaliine/project-news-site", + "forks_url": "https://api.github.com/repos/Kaliine/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Kaliine/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Kaliine/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Kaliine/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Kaliine/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Kaliine/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Kaliine/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Kaliine/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Kaliine/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Kaliine/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Kaliine/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Kaliine/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Kaliine/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Kaliine/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Kaliine/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Kaliine/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Kaliine/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Kaliine/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Kaliine/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Kaliine/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Kaliine/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Kaliine/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Kaliine/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Kaliine/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Kaliine/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Kaliine/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Kaliine/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Kaliine/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Kaliine/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Kaliine/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Kaliine/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Kaliine/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Kaliine/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Kaliine/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Kaliine/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Kaliine/project-news-site/deployments", + "created_at": "2021-08-21T13:12:59Z", + "updated_at": "2021-08-28T15:53:50Z", + "pushed_at": "2021-08-28T15:53:48Z", + "git_url": "git://github.com/Kaliine/project-news-site.git", + "ssh_url": "git@github.com:Kaliine/project-news-site.git", + "clone_url": "https://github.com/Kaliine/project-news-site.git", + "svn_url": "https://github.com/Kaliine/project-news-site", + "homepage": null, + "size": 14685, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/191" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/191" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/191" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/191/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/191/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/191/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/0ed222c98ce5a88d22b02db30e2966d601d55823" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/190", + "id": 721759812, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzU5ODEy", + "html_url": "https://github.com/Technigo/project-news-site/pull/190", + "diff_url": "https://github.com/Technigo/project-news-site/pull/190.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/190.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/190", + "number": 190, + "state": "open", + "locked": false, + "title": "Mariia Snopok - Project -News-Site ", + "user": { + "login": "MarySnopok", + "id": 83823676, + "node_id": "MDQ6VXNlcjgzODIzNjc2", + "avatar_url": "https://avatars.githubusercontent.com/u/83823676?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MarySnopok", + "html_url": "https://github.com/MarySnopok", + "followers_url": "https://api.github.com/users/MarySnopok/followers", + "following_url": "https://api.github.com/users/MarySnopok/following{/other_user}", + "gists_url": "https://api.github.com/users/MarySnopok/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MarySnopok/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MarySnopok/subscriptions", + "organizations_url": "https://api.github.com/users/MarySnopok/orgs", + "repos_url": "https://api.github.com/users/MarySnopok/repos", + "events_url": "https://api.github.com/users/MarySnopok/events{/privacy}", + "received_events_url": "https://api.github.com/users/MarySnopok/received_events", + "type": "User", + "site_admin": false + }, + "body": "What went best : \r\nI created a scalable code that I am planning to reuse in future projects . \r\nOverall it looks good and functions as planned.\r\n\r\nWhat I learned: \r\nI picked flexboxes for this project and learned a lot about this method. I think I understood how it supposed to be implemented and next time will be able to create more structural approach to CSS styling. Or not ) depends, might be my code is not that messy : looking forward for the monthly code coaching session to uncover this mystery. )\r\nI learned about custom cursors (adorable feature:)), about transitions, checked keyframes and iframes but decided to dont overload the project and implement them next time. \r\n\r\nObstacles: \r\nThere was some issue with banner. I wanted to center it but got too tired trying. So it is responsive and centered but not perfectly centered and thats annoying. \r\nAlso I wanted to change icons color and thats how I ended up with a large piece of the html code at the end of the index.html file. You will not miss it))). I had also attached a link to the stackoverflow page ,where I found example of this solution (view the index.html). I was trying to upvote it but had a lack of karma, I will improve it next week.\r\nThe last but not the list, on a desktop view I wanted divs to be separated with some space and struggled to achieve it . So I found and implemented this approach [https://coryrylan.com/blog/css-gap-space-with-flexbox] .\r\nThats actually a way of extending and recalculating a margin of a page to create extra space.\r\n\r\nNetlify link: [https://infallible-meninsky-6fb645.netlify.app/]\r\nThis week group lab code pen link: [https://codepen.io/Maria-Snopok/pen/VwWYXYy]\r\n\r\n", + "created_at": "2021-08-28T10:07:57Z", + "updated_at": "2021-09-03T15:38:53Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "da7e29119e5b1beb4901a1e87eca3314870acbf8", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/190/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/190/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/190/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/dfbd6695a03637a1a6dcdd4e0208bfb66997cb2a", + "head": { + "label": "MarySnopok:master", + "ref": "master", + "sha": "dfbd6695a03637a1a6dcdd4e0208bfb66997cb2a", + "user": { + "login": "MarySnopok", + "id": 83823676, + "node_id": "MDQ6VXNlcjgzODIzNjc2", + "avatar_url": "https://avatars.githubusercontent.com/u/83823676?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MarySnopok", + "html_url": "https://github.com/MarySnopok", + "followers_url": "https://api.github.com/users/MarySnopok/followers", + "following_url": "https://api.github.com/users/MarySnopok/following{/other_user}", + "gists_url": "https://api.github.com/users/MarySnopok/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MarySnopok/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MarySnopok/subscriptions", + "organizations_url": "https://api.github.com/users/MarySnopok/orgs", + "repos_url": "https://api.github.com/users/MarySnopok/repos", + "events_url": "https://api.github.com/users/MarySnopok/events{/privacy}", + "received_events_url": "https://api.github.com/users/MarySnopok/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398221337, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTgyMjEzMzc=", + "name": "project-news-site", + "full_name": "MarySnopok/project-news-site", + "private": false, + "owner": { + "login": "MarySnopok", + "id": 83823676, + "node_id": "MDQ6VXNlcjgzODIzNjc2", + "avatar_url": "https://avatars.githubusercontent.com/u/83823676?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MarySnopok", + "html_url": "https://github.com/MarySnopok", + "followers_url": "https://api.github.com/users/MarySnopok/followers", + "following_url": "https://api.github.com/users/MarySnopok/following{/other_user}", + "gists_url": "https://api.github.com/users/MarySnopok/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MarySnopok/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MarySnopok/subscriptions", + "organizations_url": "https://api.github.com/users/MarySnopok/orgs", + "repos_url": "https://api.github.com/users/MarySnopok/repos", + "events_url": "https://api.github.com/users/MarySnopok/events{/privacy}", + "received_events_url": "https://api.github.com/users/MarySnopok/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/MarySnopok/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/MarySnopok/project-news-site", + "forks_url": "https://api.github.com/repos/MarySnopok/project-news-site/forks", + "keys_url": "https://api.github.com/repos/MarySnopok/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/MarySnopok/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/MarySnopok/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/MarySnopok/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/MarySnopok/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/MarySnopok/project-news-site/events", + "assignees_url": "https://api.github.com/repos/MarySnopok/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/MarySnopok/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/MarySnopok/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/MarySnopok/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/MarySnopok/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/MarySnopok/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/MarySnopok/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/MarySnopok/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/MarySnopok/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/MarySnopok/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/MarySnopok/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/MarySnopok/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/MarySnopok/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/MarySnopok/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/MarySnopok/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/MarySnopok/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/MarySnopok/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/MarySnopok/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/MarySnopok/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/MarySnopok/project-news-site/merges", + "archive_url": "https://api.github.com/repos/MarySnopok/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/MarySnopok/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/MarySnopok/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/MarySnopok/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/MarySnopok/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/MarySnopok/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/MarySnopok/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/MarySnopok/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/MarySnopok/project-news-site/deployments", + "created_at": "2021-08-20T09:18:55Z", + "updated_at": "2021-09-03T15:38:55Z", + "pushed_at": "2021-09-03T15:38:51Z", + "git_url": "git://github.com/MarySnopok/project-news-site.git", + "ssh_url": "git@github.com:MarySnopok/project-news-site.git", + "clone_url": "https://github.com/MarySnopok/project-news-site.git", + "svn_url": "https://github.com/MarySnopok/project-news-site", + "homepage": null, + "size": 20059, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/190" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/190" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/190" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/190/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/190/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/190/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/dfbd6695a03637a1a6dcdd4e0208bfb66997cb2a" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/189", + "id": 721757639, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzU3NjM5", + "html_url": "https://github.com/Technigo/project-news-site/pull/189", + "diff_url": "https://github.com/Technigo/project-news-site/pull/189.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/189.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/189", + "number": 189, + "state": "open", + "locked": false, + "title": "created a landing page of a Food News Magazine", + "user": { + "login": "nama0027", + "id": 71524871, + "node_id": "MDQ6VXNlcjcxNTI0ODcx", + "avatar_url": "https://avatars.githubusercontent.com/u/71524871?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nama0027", + "html_url": "https://github.com/nama0027", + "followers_url": "https://api.github.com/users/nama0027/followers", + "following_url": "https://api.github.com/users/nama0027/following{/other_user}", + "gists_url": "https://api.github.com/users/nama0027/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nama0027/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nama0027/subscriptions", + "organizations_url": "https://api.github.com/users/nama0027/orgs", + "repos_url": "https://api.github.com/users/nama0027/repos", + "events_url": "https://api.github.com/users/nama0027/events{/privacy}", + "received_events_url": "https://api.github.com/users/nama0027/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-28T09:53:11Z", + "updated_at": "2021-09-03T10:47:41Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "3e33d39a379abcc684d6244b27300a2673af3c67", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/189/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/189/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/189/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/e89b4eafcd6c5ada054d803cc1195cb26f17fc17", + "head": { + "label": "nama0027:master", + "ref": "master", + "sha": "e89b4eafcd6c5ada054d803cc1195cb26f17fc17", + "user": { + "login": "nama0027", + "id": 71524871, + "node_id": "MDQ6VXNlcjcxNTI0ODcx", + "avatar_url": "https://avatars.githubusercontent.com/u/71524871?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nama0027", + "html_url": "https://github.com/nama0027", + "followers_url": "https://api.github.com/users/nama0027/followers", + "following_url": "https://api.github.com/users/nama0027/following{/other_user}", + "gists_url": "https://api.github.com/users/nama0027/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nama0027/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nama0027/subscriptions", + "organizations_url": "https://api.github.com/users/nama0027/orgs", + "repos_url": "https://api.github.com/users/nama0027/repos", + "events_url": "https://api.github.com/users/nama0027/events{/privacy}", + "received_events_url": "https://api.github.com/users/nama0027/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399016044, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMTYwNDQ=", + "name": "project-news-site", + "full_name": "nama0027/project-news-site", + "private": false, + "owner": { + "login": "nama0027", + "id": 71524871, + "node_id": "MDQ6VXNlcjcxNTI0ODcx", + "avatar_url": "https://avatars.githubusercontent.com/u/71524871?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nama0027", + "html_url": "https://github.com/nama0027", + "followers_url": "https://api.github.com/users/nama0027/followers", + "following_url": "https://api.github.com/users/nama0027/following{/other_user}", + "gists_url": "https://api.github.com/users/nama0027/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nama0027/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nama0027/subscriptions", + "organizations_url": "https://api.github.com/users/nama0027/orgs", + "repos_url": "https://api.github.com/users/nama0027/repos", + "events_url": "https://api.github.com/users/nama0027/events{/privacy}", + "received_events_url": "https://api.github.com/users/nama0027/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/nama0027/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/nama0027/project-news-site", + "forks_url": "https://api.github.com/repos/nama0027/project-news-site/forks", + "keys_url": "https://api.github.com/repos/nama0027/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nama0027/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nama0027/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/nama0027/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/nama0027/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/nama0027/project-news-site/events", + "assignees_url": "https://api.github.com/repos/nama0027/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/nama0027/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/nama0027/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/nama0027/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nama0027/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nama0027/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nama0027/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nama0027/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nama0027/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/nama0027/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/nama0027/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/nama0027/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/nama0027/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/nama0027/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nama0027/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nama0027/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nama0027/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/nama0027/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/nama0027/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nama0027/project-news-site/merges", + "archive_url": "https://api.github.com/repos/nama0027/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nama0027/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/nama0027/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/nama0027/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nama0027/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nama0027/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nama0027/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/nama0027/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/nama0027/project-news-site/deployments", + "created_at": "2021-08-23T07:44:12Z", + "updated_at": "2021-08-28T09:40:53Z", + "pushed_at": "2021-08-28T09:40:51Z", + "git_url": "git://github.com/nama0027/project-news-site.git", + "ssh_url": "git@github.com:nama0027/project-news-site.git", + "clone_url": "https://github.com/nama0027/project-news-site.git", + "svn_url": "https://github.com/nama0027/project-news-site", + "homepage": null, + "size": 2575, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/189" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/189" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/189" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/189/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/189/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/189/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/e89b4eafcd6c5ada054d803cc1195cb26f17fc17" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/188", + "id": 721572978, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNTcyOTc4", + "html_url": "https://github.com/Technigo/project-news-site/pull/188", + "diff_url": "https://github.com/Technigo/project-news-site/pull/188.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/188.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/188", + "number": 188, + "state": "open", + "locked": false, + "title": "Patrik Mattsson - project 2: News Site", + "user": { + "login": "Mattsson717", + "id": 83518778, + "node_id": "MDQ6VXNlcjgzNTE4Nzc4", + "avatar_url": "https://avatars.githubusercontent.com/u/83518778?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Mattsson717", + "html_url": "https://github.com/Mattsson717", + "followers_url": "https://api.github.com/users/Mattsson717/followers", + "following_url": "https://api.github.com/users/Mattsson717/following{/other_user}", + "gists_url": "https://api.github.com/users/Mattsson717/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Mattsson717/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Mattsson717/subscriptions", + "organizations_url": "https://api.github.com/users/Mattsson717/orgs", + "repos_url": "https://api.github.com/users/Mattsson717/repos", + "events_url": "https://api.github.com/users/Mattsson717/events{/privacy}", + "received_events_url": "https://api.github.com/users/Mattsson717/received_events", + "type": "User", + "site_admin": false + }, + "body": "Im most proud of making it responsive. \r\nI struggled with understanding flexbox and grid, what tags to use and when.\r\nNelify link:\r\nhttps://nostalgic-fermat-8c63eb.netlify.app/\r\n", + "created_at": "2021-08-27T19:45:12Z", + "updated_at": "2021-09-05T08:59:13Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "1b1ee8079195868a20c58c4638ebd23179bbb97a", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/188/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/188/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/188/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/b15ac743c4bf2ce084aebd4c5e5147ad78b86e77", + "head": { + "label": "Mattsson717:master", + "ref": "master", + "sha": "b15ac743c4bf2ce084aebd4c5e5147ad78b86e77", + "user": { + "login": "Mattsson717", + "id": 83518778, + "node_id": "MDQ6VXNlcjgzNTE4Nzc4", + "avatar_url": "https://avatars.githubusercontent.com/u/83518778?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Mattsson717", + "html_url": "https://github.com/Mattsson717", + "followers_url": "https://api.github.com/users/Mattsson717/followers", + "following_url": "https://api.github.com/users/Mattsson717/following{/other_user}", + "gists_url": "https://api.github.com/users/Mattsson717/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Mattsson717/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Mattsson717/subscriptions", + "organizations_url": "https://api.github.com/users/Mattsson717/orgs", + "repos_url": "https://api.github.com/users/Mattsson717/repos", + "events_url": "https://api.github.com/users/Mattsson717/events{/privacy}", + "received_events_url": "https://api.github.com/users/Mattsson717/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 397890831, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTc4OTA4MzE=", + "name": "project-news-site", + "full_name": "Mattsson717/project-news-site", + "private": false, + "owner": { + "login": "Mattsson717", + "id": 83518778, + "node_id": "MDQ6VXNlcjgzNTE4Nzc4", + "avatar_url": "https://avatars.githubusercontent.com/u/83518778?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Mattsson717", + "html_url": "https://github.com/Mattsson717", + "followers_url": "https://api.github.com/users/Mattsson717/followers", + "following_url": "https://api.github.com/users/Mattsson717/following{/other_user}", + "gists_url": "https://api.github.com/users/Mattsson717/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Mattsson717/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Mattsson717/subscriptions", + "organizations_url": "https://api.github.com/users/Mattsson717/orgs", + "repos_url": "https://api.github.com/users/Mattsson717/repos", + "events_url": "https://api.github.com/users/Mattsson717/events{/privacy}", + "received_events_url": "https://api.github.com/users/Mattsson717/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Mattsson717/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Mattsson717/project-news-site", + "forks_url": "https://api.github.com/repos/Mattsson717/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Mattsson717/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Mattsson717/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Mattsson717/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Mattsson717/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Mattsson717/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Mattsson717/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Mattsson717/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Mattsson717/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Mattsson717/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Mattsson717/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Mattsson717/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Mattsson717/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Mattsson717/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Mattsson717/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Mattsson717/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Mattsson717/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Mattsson717/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Mattsson717/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Mattsson717/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Mattsson717/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Mattsson717/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Mattsson717/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Mattsson717/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Mattsson717/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Mattsson717/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Mattsson717/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Mattsson717/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Mattsson717/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Mattsson717/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Mattsson717/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Mattsson717/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Mattsson717/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Mattsson717/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Mattsson717/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Mattsson717/project-news-site/deployments", + "created_at": "2021-08-19T09:39:03Z", + "updated_at": "2021-08-27T19:33:24Z", + "pushed_at": "2021-08-27T19:33:21Z", + "git_url": "git://github.com/Mattsson717/project-news-site.git", + "ssh_url": "git@github.com:Mattsson717/project-news-site.git", + "clone_url": "https://github.com/Mattsson717/project-news-site.git", + "svn_url": "https://github.com/Mattsson717/project-news-site", + "homepage": null, + "size": 851, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/188" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/188" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/188" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/188/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/188/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/188/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/b15ac743c4bf2ce084aebd4c5e5147ad78b86e77" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/187", + "id": 721400246, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNDAwMjQ2", + "html_url": "https://github.com/Technigo/project-news-site/pull/187", + "diff_url": "https://github.com/Technigo/project-news-site/pull/187.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/187.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/187", + "number": 187, + "state": "open", + "locked": false, + "title": "Julia N 2nd week project", + "user": { + "login": "JuliaNiki", + "id": 84314805, + "node_id": "MDQ6VXNlcjg0MzE0ODA1", + "avatar_url": "https://avatars.githubusercontent.com/u/84314805?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/JuliaNiki", + "html_url": "https://github.com/JuliaNiki", + "followers_url": "https://api.github.com/users/JuliaNiki/followers", + "following_url": "https://api.github.com/users/JuliaNiki/following{/other_user}", + "gists_url": "https://api.github.com/users/JuliaNiki/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JuliaNiki/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JuliaNiki/subscriptions", + "organizations_url": "https://api.github.com/users/JuliaNiki/orgs", + "repos_url": "https://api.github.com/users/JuliaNiki/repos", + "events_url": "https://api.github.com/users/JuliaNiki/events{/privacy}", + "received_events_url": "https://api.github.com/users/JuliaNiki/received_events", + "type": "User", + "site_admin": false + }, + "body": "Link to my deployed version: https://vegan-news.netlify.app \r\n\r\nThis week's project turned out a great possibility of learning for me and getting more familiar with layouts, responsive design, hovering effects and trying to make a clean and clear code.\r\nIf I had more time, I would also experiment with replacing images on different screens and adding one more section after small news to implement a grid layout to try another way of styling a page, otherwise I am happy with my progress and the result I achieved. \r\n", + "created_at": "2021-08-27T14:53:53Z", + "updated_at": "2021-08-27T14:53:53Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "88af88b79dc37e2adb9c7590759eea6c9841a86f", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/187/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/187/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/187/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/77e660a18a08190e1bcbfe7e672addf916581864", + "head": { + "label": "JuliaNiki:master", + "ref": "master", + "sha": "77e660a18a08190e1bcbfe7e672addf916581864", + "user": { + "login": "JuliaNiki", + "id": 84314805, + "node_id": "MDQ6VXNlcjg0MzE0ODA1", + "avatar_url": "https://avatars.githubusercontent.com/u/84314805?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/JuliaNiki", + "html_url": "https://github.com/JuliaNiki", + "followers_url": "https://api.github.com/users/JuliaNiki/followers", + "following_url": "https://api.github.com/users/JuliaNiki/following{/other_user}", + "gists_url": "https://api.github.com/users/JuliaNiki/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JuliaNiki/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JuliaNiki/subscriptions", + "organizations_url": "https://api.github.com/users/JuliaNiki/orgs", + "repos_url": "https://api.github.com/users/JuliaNiki/repos", + "events_url": "https://api.github.com/users/JuliaNiki/events{/privacy}", + "received_events_url": "https://api.github.com/users/JuliaNiki/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398284556, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTgyODQ1NTY=", + "name": "project-news-site", + "full_name": "JuliaNiki/project-news-site", + "private": false, + "owner": { + "login": "JuliaNiki", + "id": 84314805, + "node_id": "MDQ6VXNlcjg0MzE0ODA1", + "avatar_url": "https://avatars.githubusercontent.com/u/84314805?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/JuliaNiki", + "html_url": "https://github.com/JuliaNiki", + "followers_url": "https://api.github.com/users/JuliaNiki/followers", + "following_url": "https://api.github.com/users/JuliaNiki/following{/other_user}", + "gists_url": "https://api.github.com/users/JuliaNiki/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JuliaNiki/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JuliaNiki/subscriptions", + "organizations_url": "https://api.github.com/users/JuliaNiki/orgs", + "repos_url": "https://api.github.com/users/JuliaNiki/repos", + "events_url": "https://api.github.com/users/JuliaNiki/events{/privacy}", + "received_events_url": "https://api.github.com/users/JuliaNiki/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/JuliaNiki/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/JuliaNiki/project-news-site", + "forks_url": "https://api.github.com/repos/JuliaNiki/project-news-site/forks", + "keys_url": "https://api.github.com/repos/JuliaNiki/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/JuliaNiki/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/JuliaNiki/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/JuliaNiki/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/JuliaNiki/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/JuliaNiki/project-news-site/events", + "assignees_url": "https://api.github.com/repos/JuliaNiki/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/JuliaNiki/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/JuliaNiki/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/JuliaNiki/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/JuliaNiki/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/JuliaNiki/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/JuliaNiki/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/JuliaNiki/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/JuliaNiki/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/JuliaNiki/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/JuliaNiki/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/JuliaNiki/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/JuliaNiki/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/JuliaNiki/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/JuliaNiki/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/JuliaNiki/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/JuliaNiki/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/JuliaNiki/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/JuliaNiki/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/JuliaNiki/project-news-site/merges", + "archive_url": "https://api.github.com/repos/JuliaNiki/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/JuliaNiki/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/JuliaNiki/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/JuliaNiki/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/JuliaNiki/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/JuliaNiki/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/JuliaNiki/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/JuliaNiki/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/JuliaNiki/project-news-site/deployments", + "created_at": "2021-08-20T13:25:22Z", + "updated_at": "2021-08-27T14:28:37Z", + "pushed_at": "2021-08-27T14:28:34Z", + "git_url": "git://github.com/JuliaNiki/project-news-site.git", + "ssh_url": "git@github.com:JuliaNiki/project-news-site.git", + "clone_url": "https://github.com/JuliaNiki/project-news-site.git", + "svn_url": "https://github.com/JuliaNiki/project-news-site", + "homepage": null, + "size": 2465, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/187" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/187" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/187" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/187/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/187/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/187/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/77e660a18a08190e1bcbfe7e672addf916581864" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/186", + "id": 721388343, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMzg4MzQz", + "html_url": "https://github.com/Technigo/project-news-site/pull/186", + "diff_url": "https://github.com/Technigo/project-news-site/pull/186.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/186.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/186", + "number": 186, + "state": "open", + "locked": false, + "title": "Darya: project-news-site", + "user": { + "login": "DALA746", + "id": 79586101, + "node_id": "MDQ6VXNlcjc5NTg2MTAx", + "avatar_url": "https://avatars.githubusercontent.com/u/79586101?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DALA746", + "html_url": "https://github.com/DALA746", + "followers_url": "https://api.github.com/users/DALA746/followers", + "following_url": "https://api.github.com/users/DALA746/following{/other_user}", + "gists_url": "https://api.github.com/users/DALA746/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DALA746/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DALA746/subscriptions", + "organizations_url": "https://api.github.com/users/DALA746/orgs", + "repos_url": "https://api.github.com/users/DALA746/repos", + "events_url": "https://api.github.com/users/DALA746/events{/privacy}", + "received_events_url": "https://api.github.com/users/DALA746/received_events", + "type": "User", + "site_admin": false + }, + "body": "Link to my deployed project: https://games-news.netlify.app/\r\n\r\nI think it went well, I need to read a documentation first before I start coding.", + "created_at": "2021-08-27T14:37:36Z", + "updated_at": "2021-09-21T18:41:19Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "190d39b5fc603d7f186c23739e6077c4fe6f2cd4", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/186/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/186/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/186/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/156bd23ed6f79ad4de4ca8c92d9765f2715a32de", + "head": { + "label": "DALA746:master", + "ref": "master", + "sha": "156bd23ed6f79ad4de4ca8c92d9765f2715a32de", + "user": { + "login": "DALA746", + "id": 79586101, + "node_id": "MDQ6VXNlcjc5NTg2MTAx", + "avatar_url": "https://avatars.githubusercontent.com/u/79586101?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DALA746", + "html_url": "https://github.com/DALA746", + "followers_url": "https://api.github.com/users/DALA746/followers", + "following_url": "https://api.github.com/users/DALA746/following{/other_user}", + "gists_url": "https://api.github.com/users/DALA746/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DALA746/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DALA746/subscriptions", + "organizations_url": "https://api.github.com/users/DALA746/orgs", + "repos_url": "https://api.github.com/users/DALA746/repos", + "events_url": "https://api.github.com/users/DALA746/events{/privacy}", + "received_events_url": "https://api.github.com/users/DALA746/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 400499163, + "node_id": "MDEwOlJlcG9zaXRvcnk0MDA0OTkxNjM=", + "name": "project-news-site", + "full_name": "DALA746/project-news-site", + "private": false, + "owner": { + "login": "DALA746", + "id": 79586101, + "node_id": "MDQ6VXNlcjc5NTg2MTAx", + "avatar_url": "https://avatars.githubusercontent.com/u/79586101?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/DALA746", + "html_url": "https://github.com/DALA746", + "followers_url": "https://api.github.com/users/DALA746/followers", + "following_url": "https://api.github.com/users/DALA746/following{/other_user}", + "gists_url": "https://api.github.com/users/DALA746/gists{/gist_id}", + "starred_url": "https://api.github.com/users/DALA746/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/DALA746/subscriptions", + "organizations_url": "https://api.github.com/users/DALA746/orgs", + "repos_url": "https://api.github.com/users/DALA746/repos", + "events_url": "https://api.github.com/users/DALA746/events{/privacy}", + "received_events_url": "https://api.github.com/users/DALA746/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/DALA746/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/DALA746/project-news-site", + "forks_url": "https://api.github.com/repos/DALA746/project-news-site/forks", + "keys_url": "https://api.github.com/repos/DALA746/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/DALA746/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/DALA746/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/DALA746/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/DALA746/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/DALA746/project-news-site/events", + "assignees_url": "https://api.github.com/repos/DALA746/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/DALA746/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/DALA746/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/DALA746/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/DALA746/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/DALA746/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/DALA746/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/DALA746/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/DALA746/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/DALA746/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/DALA746/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/DALA746/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/DALA746/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/DALA746/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/DALA746/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/DALA746/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/DALA746/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/DALA746/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/DALA746/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/DALA746/project-news-site/merges", + "archive_url": "https://api.github.com/repos/DALA746/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/DALA746/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/DALA746/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/DALA746/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/DALA746/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/DALA746/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/DALA746/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/DALA746/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/DALA746/project-news-site/deployments", + "created_at": "2021-08-27T12:18:32Z", + "updated_at": "2021-09-21T18:41:20Z", + "pushed_at": "2021-09-21T18:41:17Z", + "git_url": "git://github.com/DALA746/project-news-site.git", + "ssh_url": "git@github.com:DALA746/project-news-site.git", + "clone_url": "https://github.com/DALA746/project-news-site.git", + "svn_url": "https://github.com/DALA746/project-news-site", + "homepage": null, + "size": 14444, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/186" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/186" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/186" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/186/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/186/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/186/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/156bd23ed6f79ad4de4ca8c92d9765f2715a32de" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/185", + "id": 721371820, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMzcxODIw", + "html_url": "https://github.com/Technigo/project-news-site/pull/185", + "diff_url": "https://github.com/Technigo/project-news-site/pull/185.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/185.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/185", + "number": 185, + "state": "open", + "locked": false, + "title": "Johanna Mannestål News site, week 2 project", + "user": { + "login": "JohannaMJ", + "id": 83920418, + "node_id": "MDQ6VXNlcjgzOTIwNDE4", + "avatar_url": "https://avatars.githubusercontent.com/u/83920418?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/JohannaMJ", + "html_url": "https://github.com/JohannaMJ", + "followers_url": "https://api.github.com/users/JohannaMJ/followers", + "following_url": "https://api.github.com/users/JohannaMJ/following{/other_user}", + "gists_url": "https://api.github.com/users/JohannaMJ/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JohannaMJ/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JohannaMJ/subscriptions", + "organizations_url": "https://api.github.com/users/JohannaMJ/orgs", + "repos_url": "https://api.github.com/users/JohannaMJ/repos", + "events_url": "https://api.github.com/users/JohannaMJ/events{/privacy}", + "received_events_url": "https://api.github.com/users/JohannaMJ/received_events", + "type": "User", + "site_admin": false + }, + "body": "Netlify link: https://affectionate-ptolemy-c240f8.netlify.app\r\n\r\nThis weeks' project has been so much fun. I'm really new to coding and I'm proud over so many things! I'm happy the way the site turned out with flex box and responsiveness, these concepts are all new to me! I'm proud over my patience and ability to google things I have no clue about and then practice, learning and using them. Also, using the Terminal makes me feel like a front end dev pro!\r\n\r\nI've struggled a lot with parts of the flex box and the responsive design, so it has been challenging but mostly fun!\r\n", + "created_at": "2021-08-27T14:15:16Z", + "updated_at": "2021-08-30T22:26:51Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "7a927a4d54ee673a2e1d763b212719baeaa632a5", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/185/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/185/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/185/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/f7887bc60f1eaaa5c5c5cea79203c5cd77df5c41", + "head": { + "label": "JohannaMJ:master", + "ref": "master", + "sha": "f7887bc60f1eaaa5c5c5cea79203c5cd77df5c41", + "user": { + "login": "JohannaMJ", + "id": 83920418, + "node_id": "MDQ6VXNlcjgzOTIwNDE4", + "avatar_url": "https://avatars.githubusercontent.com/u/83920418?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/JohannaMJ", + "html_url": "https://github.com/JohannaMJ", + "followers_url": "https://api.github.com/users/JohannaMJ/followers", + "following_url": "https://api.github.com/users/JohannaMJ/following{/other_user}", + "gists_url": "https://api.github.com/users/JohannaMJ/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JohannaMJ/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JohannaMJ/subscriptions", + "organizations_url": "https://api.github.com/users/JohannaMJ/orgs", + "repos_url": "https://api.github.com/users/JohannaMJ/repos", + "events_url": "https://api.github.com/users/JohannaMJ/events{/privacy}", + "received_events_url": "https://api.github.com/users/JohannaMJ/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399007298, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMDcyOTg=", + "name": "project-news-site", + "full_name": "JohannaMJ/project-news-site", + "private": false, + "owner": { + "login": "JohannaMJ", + "id": 83920418, + "node_id": "MDQ6VXNlcjgzOTIwNDE4", + "avatar_url": "https://avatars.githubusercontent.com/u/83920418?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/JohannaMJ", + "html_url": "https://github.com/JohannaMJ", + "followers_url": "https://api.github.com/users/JohannaMJ/followers", + "following_url": "https://api.github.com/users/JohannaMJ/following{/other_user}", + "gists_url": "https://api.github.com/users/JohannaMJ/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JohannaMJ/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JohannaMJ/subscriptions", + "organizations_url": "https://api.github.com/users/JohannaMJ/orgs", + "repos_url": "https://api.github.com/users/JohannaMJ/repos", + "events_url": "https://api.github.com/users/JohannaMJ/events{/privacy}", + "received_events_url": "https://api.github.com/users/JohannaMJ/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/JohannaMJ/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/JohannaMJ/project-news-site", + "forks_url": "https://api.github.com/repos/JohannaMJ/project-news-site/forks", + "keys_url": "https://api.github.com/repos/JohannaMJ/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/JohannaMJ/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/JohannaMJ/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/JohannaMJ/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/JohannaMJ/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/JohannaMJ/project-news-site/events", + "assignees_url": "https://api.github.com/repos/JohannaMJ/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/JohannaMJ/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/JohannaMJ/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/JohannaMJ/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/JohannaMJ/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/JohannaMJ/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/JohannaMJ/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/JohannaMJ/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/JohannaMJ/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/JohannaMJ/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/JohannaMJ/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/JohannaMJ/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/JohannaMJ/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/JohannaMJ/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/JohannaMJ/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/JohannaMJ/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/JohannaMJ/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/JohannaMJ/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/JohannaMJ/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/JohannaMJ/project-news-site/merges", + "archive_url": "https://api.github.com/repos/JohannaMJ/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/JohannaMJ/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/JohannaMJ/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/JohannaMJ/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/JohannaMJ/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/JohannaMJ/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/JohannaMJ/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/JohannaMJ/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/JohannaMJ/project-news-site/deployments", + "created_at": "2021-08-23T07:11:15Z", + "updated_at": "2021-08-27T13:00:34Z", + "pushed_at": "2021-08-27T13:00:32Z", + "git_url": "git://github.com/JohannaMJ/project-news-site.git", + "ssh_url": "git@github.com:JohannaMJ/project-news-site.git", + "clone_url": "https://github.com/JohannaMJ/project-news-site.git", + "svn_url": "https://github.com/JohannaMJ/project-news-site", + "homepage": null, + "size": 764, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/185" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/185" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/185" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/185/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/185/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/185/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/f7887bc60f1eaaa5c5c5cea79203c5cd77df5c41" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/184", + "id": 721340255, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMzQwMjU1", + "html_url": "https://github.com/Technigo/project-news-site/pull/184", + "diff_url": "https://github.com/Technigo/project-news-site/pull/184.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/184.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/184", + "number": 184, + "state": "open", + "locked": false, + "title": "Rosanna project news site", + "user": { + "login": "Rosanna86", + "id": 80784451, + "node_id": "MDQ6VXNlcjgwNzg0NDUx", + "avatar_url": "https://avatars.githubusercontent.com/u/80784451?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Rosanna86", + "html_url": "https://github.com/Rosanna86", + "followers_url": "https://api.github.com/users/Rosanna86/followers", + "following_url": "https://api.github.com/users/Rosanna86/following{/other_user}", + "gists_url": "https://api.github.com/users/Rosanna86/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Rosanna86/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Rosanna86/subscriptions", + "organizations_url": "https://api.github.com/users/Rosanna86/orgs", + "repos_url": "https://api.github.com/users/Rosanna86/repos", + "events_url": "https://api.github.com/users/Rosanna86/events{/privacy}", + "received_events_url": "https://api.github.com/users/Rosanna86/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2021-08-27T13:33:34Z", + "updated_at": "2021-09-01T09:11:37Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "49e22c4dae92f09437c228c3cb83e283ced3e680", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/184/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/184/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/184/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/dc4b83b9b6524b3ffd6def7c4c4ff42cc4abfb70", + "head": { + "label": "Rosanna86:master", + "ref": "master", + "sha": "dc4b83b9b6524b3ffd6def7c4c4ff42cc4abfb70", + "user": { + "login": "Rosanna86", + "id": 80784451, + "node_id": "MDQ6VXNlcjgwNzg0NDUx", + "avatar_url": "https://avatars.githubusercontent.com/u/80784451?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Rosanna86", + "html_url": "https://github.com/Rosanna86", + "followers_url": "https://api.github.com/users/Rosanna86/followers", + "following_url": "https://api.github.com/users/Rosanna86/following{/other_user}", + "gists_url": "https://api.github.com/users/Rosanna86/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Rosanna86/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Rosanna86/subscriptions", + "organizations_url": "https://api.github.com/users/Rosanna86/orgs", + "repos_url": "https://api.github.com/users/Rosanna86/repos", + "events_url": "https://api.github.com/users/Rosanna86/events{/privacy}", + "received_events_url": "https://api.github.com/users/Rosanna86/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399374393, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkzNzQzOTM=", + "name": "project-news-site", + "full_name": "Rosanna86/project-news-site", + "private": false, + "owner": { + "login": "Rosanna86", + "id": 80784451, + "node_id": "MDQ6VXNlcjgwNzg0NDUx", + "avatar_url": "https://avatars.githubusercontent.com/u/80784451?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Rosanna86", + "html_url": "https://github.com/Rosanna86", + "followers_url": "https://api.github.com/users/Rosanna86/followers", + "following_url": "https://api.github.com/users/Rosanna86/following{/other_user}", + "gists_url": "https://api.github.com/users/Rosanna86/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Rosanna86/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Rosanna86/subscriptions", + "organizations_url": "https://api.github.com/users/Rosanna86/orgs", + "repos_url": "https://api.github.com/users/Rosanna86/repos", + "events_url": "https://api.github.com/users/Rosanna86/events{/privacy}", + "received_events_url": "https://api.github.com/users/Rosanna86/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Rosanna86/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Rosanna86/project-news-site", + "forks_url": "https://api.github.com/repos/Rosanna86/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Rosanna86/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Rosanna86/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Rosanna86/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Rosanna86/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Rosanna86/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Rosanna86/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Rosanna86/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Rosanna86/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Rosanna86/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Rosanna86/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Rosanna86/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Rosanna86/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Rosanna86/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Rosanna86/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Rosanna86/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Rosanna86/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Rosanna86/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Rosanna86/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Rosanna86/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Rosanna86/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Rosanna86/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Rosanna86/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Rosanna86/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Rosanna86/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Rosanna86/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Rosanna86/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Rosanna86/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Rosanna86/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Rosanna86/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Rosanna86/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Rosanna86/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Rosanna86/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Rosanna86/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Rosanna86/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Rosanna86/project-news-site/deployments", + "created_at": "2021-08-24T07:28:21Z", + "updated_at": "2021-09-01T09:11:38Z", + "pushed_at": "2021-09-01T09:11:35Z", + "git_url": "git://github.com/Rosanna86/project-news-site.git", + "ssh_url": "git@github.com:Rosanna86/project-news-site.git", + "clone_url": "https://github.com/Rosanna86/project-news-site.git", + "svn_url": "https://github.com/Rosanna86/project-news-site", + "homepage": null, + "size": 5024, + "stargazers_count": 0, + "watchers_count": 0, + "language": "CSS", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/184" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/184" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/184" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/184/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/184/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/184/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/dc4b83b9b6524b3ffd6def7c4c4ff42cc4abfb70" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/183", + "id": 721339134, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMzM5MTM0", + "html_url": "https://github.com/Technigo/project-news-site/pull/183", + "diff_url": "https://github.com/Technigo/project-news-site/pull/183.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/183.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/183", + "number": 183, + "state": "open", + "locked": false, + "title": "Katie Wu", + "user": { + "login": "katiewu1", + "id": 83988618, + "node_id": "MDQ6VXNlcjgzOTg4NjE4", + "avatar_url": "https://avatars.githubusercontent.com/u/83988618?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/katiewu1", + "html_url": "https://github.com/katiewu1", + "followers_url": "https://api.github.com/users/katiewu1/followers", + "following_url": "https://api.github.com/users/katiewu1/following{/other_user}", + "gists_url": "https://api.github.com/users/katiewu1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/katiewu1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/katiewu1/subscriptions", + "organizations_url": "https://api.github.com/users/katiewu1/orgs", + "repos_url": "https://api.github.com/users/katiewu1/repos", + "events_url": "https://api.github.com/users/katiewu1/events{/privacy}", + "received_events_url": "https://api.github.com/users/katiewu1/received_events", + "type": "User", + "site_admin": false + }, + "body": "link to Netlify: https://newsmagazine.netlify.app/\r\n\r\nI'm most proud of combining both flex and grid (played around with flex more than grid). And managed to use position sticky to keep the navbar at the top of the page when scrolling down. \r\n\r\nI struggled with the navbar, trying to highlight some words when clicking on the links. \r\n\r\nIf we have to redo this project I want to try box-sizing and start with the mobile approach first. On this week's assignment I started with the desktop. ", + "created_at": "2021-08-27T13:31:59Z", + "updated_at": "2021-09-15T13:44:51Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "ff4c3041eb42eba63048e631f1c2899911990413", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/183/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/183/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/183/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/d2a2bbf724f611a0f68c2f6b0140604e592059dd", + "head": { + "label": "katiewu1:master", + "ref": "master", + "sha": "d2a2bbf724f611a0f68c2f6b0140604e592059dd", + "user": { + "login": "katiewu1", + "id": 83988618, + "node_id": "MDQ6VXNlcjgzOTg4NjE4", + "avatar_url": "https://avatars.githubusercontent.com/u/83988618?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/katiewu1", + "html_url": "https://github.com/katiewu1", + "followers_url": "https://api.github.com/users/katiewu1/followers", + "following_url": "https://api.github.com/users/katiewu1/following{/other_user}", + "gists_url": "https://api.github.com/users/katiewu1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/katiewu1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/katiewu1/subscriptions", + "organizations_url": "https://api.github.com/users/katiewu1/orgs", + "repos_url": "https://api.github.com/users/katiewu1/repos", + "events_url": "https://api.github.com/users/katiewu1/events{/privacy}", + "received_events_url": "https://api.github.com/users/katiewu1/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398316079, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTgzMTYwNzk=", + "name": "project-news-site", + "full_name": "katiewu1/project-news-site", + "private": false, + "owner": { + "login": "katiewu1", + "id": 83988618, + "node_id": "MDQ6VXNlcjgzOTg4NjE4", + "avatar_url": "https://avatars.githubusercontent.com/u/83988618?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/katiewu1", + "html_url": "https://github.com/katiewu1", + "followers_url": "https://api.github.com/users/katiewu1/followers", + "following_url": "https://api.github.com/users/katiewu1/following{/other_user}", + "gists_url": "https://api.github.com/users/katiewu1/gists{/gist_id}", + "starred_url": "https://api.github.com/users/katiewu1/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/katiewu1/subscriptions", + "organizations_url": "https://api.github.com/users/katiewu1/orgs", + "repos_url": "https://api.github.com/users/katiewu1/repos", + "events_url": "https://api.github.com/users/katiewu1/events{/privacy}", + "received_events_url": "https://api.github.com/users/katiewu1/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/katiewu1/project-news-site", + "description": "https://newsmagazine.netlify.app/", + "fork": true, + "url": "https://api.github.com/repos/katiewu1/project-news-site", + "forks_url": "https://api.github.com/repos/katiewu1/project-news-site/forks", + "keys_url": "https://api.github.com/repos/katiewu1/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/katiewu1/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/katiewu1/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/katiewu1/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/katiewu1/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/katiewu1/project-news-site/events", + "assignees_url": "https://api.github.com/repos/katiewu1/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/katiewu1/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/katiewu1/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/katiewu1/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/katiewu1/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/katiewu1/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/katiewu1/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/katiewu1/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/katiewu1/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/katiewu1/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/katiewu1/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/katiewu1/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/katiewu1/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/katiewu1/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/katiewu1/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/katiewu1/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/katiewu1/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/katiewu1/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/katiewu1/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/katiewu1/project-news-site/merges", + "archive_url": "https://api.github.com/repos/katiewu1/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/katiewu1/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/katiewu1/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/katiewu1/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/katiewu1/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/katiewu1/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/katiewu1/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/katiewu1/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/katiewu1/project-news-site/deployments", + "created_at": "2021-08-20T15:11:24Z", + "updated_at": "2021-09-15T13:44:54Z", + "pushed_at": "2021-09-15T13:44:50Z", + "git_url": "git://github.com/katiewu1/project-news-site.git", + "ssh_url": "git@github.com:katiewu1/project-news-site.git", + "clone_url": "https://github.com/katiewu1/project-news-site.git", + "svn_url": "https://github.com/katiewu1/project-news-site", + "homepage": "https://newsmagazine.netlify.app/", + "size": 12823, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/183" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/183" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/183" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/183/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/183/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/183/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/d2a2bbf724f611a0f68c2f6b0140604e592059dd" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/182", + "id": 721327221, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMzI3MjIx", + "html_url": "https://github.com/Technigo/project-news-site/pull/182", + "diff_url": "https://github.com/Technigo/project-news-site/pull/182.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/182.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/182", + "number": 182, + "state": "open", + "locked": false, + "title": "Helenas-news-site", + "user": { + "login": "HelenaW86", + "id": 63056581, + "node_id": "MDQ6VXNlcjYzMDU2NTgx", + "avatar_url": "https://avatars.githubusercontent.com/u/63056581?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HelenaW86", + "html_url": "https://github.com/HelenaW86", + "followers_url": "https://api.github.com/users/HelenaW86/followers", + "following_url": "https://api.github.com/users/HelenaW86/following{/other_user}", + "gists_url": "https://api.github.com/users/HelenaW86/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HelenaW86/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HelenaW86/subscriptions", + "organizations_url": "https://api.github.com/users/HelenaW86/orgs", + "repos_url": "https://api.github.com/users/HelenaW86/repos", + "events_url": "https://api.github.com/users/HelenaW86/events{/privacy}", + "received_events_url": "https://api.github.com/users/HelenaW86/received_events", + "type": "User", + "site_admin": false + }, + "body": "Team turtle.\r\nNetlify => https://wizardly-mcnulty-7ef87c.netlify.app/\r\nTeam with Julia =>https://codepen.io/helenaw86/pen/abwORGo ", + "created_at": "2021-08-27T13:15:38Z", + "updated_at": "2021-09-16T09:02:04Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d93d350450d5c3d97112e96f09d0f1daec32547b", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/182/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/182/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/182/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/ced5b64b885e18a5c83cd27d1f012a7976dc50a9", + "head": { + "label": "HelenaW86:master", + "ref": "master", + "sha": "ced5b64b885e18a5c83cd27d1f012a7976dc50a9", + "user": { + "login": "HelenaW86", + "id": 63056581, + "node_id": "MDQ6VXNlcjYzMDU2NTgx", + "avatar_url": "https://avatars.githubusercontent.com/u/63056581?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HelenaW86", + "html_url": "https://github.com/HelenaW86", + "followers_url": "https://api.github.com/users/HelenaW86/followers", + "following_url": "https://api.github.com/users/HelenaW86/following{/other_user}", + "gists_url": "https://api.github.com/users/HelenaW86/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HelenaW86/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HelenaW86/subscriptions", + "organizations_url": "https://api.github.com/users/HelenaW86/orgs", + "repos_url": "https://api.github.com/users/HelenaW86/repos", + "events_url": "https://api.github.com/users/HelenaW86/events{/privacy}", + "received_events_url": "https://api.github.com/users/HelenaW86/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 397944732, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTc5NDQ3MzI=", + "name": "project-news-site", + "full_name": "HelenaW86/project-news-site", + "private": false, + "owner": { + "login": "HelenaW86", + "id": 63056581, + "node_id": "MDQ6VXNlcjYzMDU2NTgx", + "avatar_url": "https://avatars.githubusercontent.com/u/63056581?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HelenaW86", + "html_url": "https://github.com/HelenaW86", + "followers_url": "https://api.github.com/users/HelenaW86/followers", + "following_url": "https://api.github.com/users/HelenaW86/following{/other_user}", + "gists_url": "https://api.github.com/users/HelenaW86/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HelenaW86/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HelenaW86/subscriptions", + "organizations_url": "https://api.github.com/users/HelenaW86/orgs", + "repos_url": "https://api.github.com/users/HelenaW86/repos", + "events_url": "https://api.github.com/users/HelenaW86/events{/privacy}", + "received_events_url": "https://api.github.com/users/HelenaW86/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/HelenaW86/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/HelenaW86/project-news-site", + "forks_url": "https://api.github.com/repos/HelenaW86/project-news-site/forks", + "keys_url": "https://api.github.com/repos/HelenaW86/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HelenaW86/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HelenaW86/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/HelenaW86/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/HelenaW86/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/HelenaW86/project-news-site/events", + "assignees_url": "https://api.github.com/repos/HelenaW86/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/HelenaW86/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/HelenaW86/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/HelenaW86/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HelenaW86/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HelenaW86/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HelenaW86/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HelenaW86/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HelenaW86/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/HelenaW86/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/HelenaW86/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/HelenaW86/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/HelenaW86/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/HelenaW86/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HelenaW86/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HelenaW86/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HelenaW86/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HelenaW86/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/HelenaW86/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HelenaW86/project-news-site/merges", + "archive_url": "https://api.github.com/repos/HelenaW86/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HelenaW86/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/HelenaW86/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/HelenaW86/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HelenaW86/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HelenaW86/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HelenaW86/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/HelenaW86/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/HelenaW86/project-news-site/deployments", + "created_at": "2021-08-19T13:01:36Z", + "updated_at": "2021-09-16T09:02:06Z", + "pushed_at": "2021-09-16T09:02:02Z", + "git_url": "git://github.com/HelenaW86/project-news-site.git", + "ssh_url": "git@github.com:HelenaW86/project-news-site.git", + "clone_url": "https://github.com/HelenaW86/project-news-site.git", + "svn_url": "https://github.com/HelenaW86/project-news-site", + "homepage": null, + "size": 16751, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/182" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/182" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/182" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/182/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/182/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/182/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/ced5b64b885e18a5c83cd27d1f012a7976dc50a9" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/181", + "id": 721262730, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMjYyNzMw", + "html_url": "https://github.com/Technigo/project-news-site/pull/181", + "diff_url": "https://github.com/Technigo/project-news-site/pull/181.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/181.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/181", + "number": 181, + "state": "open", + "locked": false, + "title": "Week 2 Technigo project", + "user": { + "login": "Ajliin", + "id": 84288114, + "node_id": "MDQ6VXNlcjg0Mjg4MTE0", + "avatar_url": "https://avatars.githubusercontent.com/u/84288114?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Ajliin", + "html_url": "https://github.com/Ajliin", + "followers_url": "https://api.github.com/users/Ajliin/followers", + "following_url": "https://api.github.com/users/Ajliin/following{/other_user}", + "gists_url": "https://api.github.com/users/Ajliin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Ajliin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Ajliin/subscriptions", + "organizations_url": "https://api.github.com/users/Ajliin/orgs", + "repos_url": "https://api.github.com/users/Ajliin/repos", + "events_url": "https://api.github.com/users/Ajliin/events{/privacy}", + "received_events_url": "https://api.github.com/users/Ajliin/received_events", + "type": "User", + "site_admin": false + }, + "body": "Week 2 project\r\n\r\nLearned about grid and flexbox, worked fine combining both\r\n\r\n ", + "created_at": "2021-08-27T11:38:23Z", + "updated_at": "2021-08-31T18:30:55Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d5778f08a32e5c25c53c80ac99a856b41294f958", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/181/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/181/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/181/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/0da0ebfee76d9602e994f82345cd82f9b5a4e5ff", + "head": { + "label": "Ajliin:master", + "ref": "master", + "sha": "0da0ebfee76d9602e994f82345cd82f9b5a4e5ff", + "user": { + "login": "Ajliin", + "id": 84288114, + "node_id": "MDQ6VXNlcjg0Mjg4MTE0", + "avatar_url": "https://avatars.githubusercontent.com/u/84288114?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Ajliin", + "html_url": "https://github.com/Ajliin", + "followers_url": "https://api.github.com/users/Ajliin/followers", + "following_url": "https://api.github.com/users/Ajliin/following{/other_user}", + "gists_url": "https://api.github.com/users/Ajliin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Ajliin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Ajliin/subscriptions", + "organizations_url": "https://api.github.com/users/Ajliin/orgs", + "repos_url": "https://api.github.com/users/Ajliin/repos", + "events_url": "https://api.github.com/users/Ajliin/events{/privacy}", + "received_events_url": "https://api.github.com/users/Ajliin/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 398332421, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTgzMzI0MjE=", + "name": "project-news-site", + "full_name": "Ajliin/project-news-site", + "private": false, + "owner": { + "login": "Ajliin", + "id": 84288114, + "node_id": "MDQ6VXNlcjg0Mjg4MTE0", + "avatar_url": "https://avatars.githubusercontent.com/u/84288114?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Ajliin", + "html_url": "https://github.com/Ajliin", + "followers_url": "https://api.github.com/users/Ajliin/followers", + "following_url": "https://api.github.com/users/Ajliin/following{/other_user}", + "gists_url": "https://api.github.com/users/Ajliin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Ajliin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Ajliin/subscriptions", + "organizations_url": "https://api.github.com/users/Ajliin/orgs", + "repos_url": "https://api.github.com/users/Ajliin/repos", + "events_url": "https://api.github.com/users/Ajliin/events{/privacy}", + "received_events_url": "https://api.github.com/users/Ajliin/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Ajliin/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/Ajliin/project-news-site", + "forks_url": "https://api.github.com/repos/Ajliin/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Ajliin/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Ajliin/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Ajliin/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Ajliin/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Ajliin/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Ajliin/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Ajliin/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Ajliin/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Ajliin/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Ajliin/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Ajliin/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Ajliin/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Ajliin/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Ajliin/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Ajliin/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Ajliin/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Ajliin/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Ajliin/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Ajliin/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Ajliin/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Ajliin/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Ajliin/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Ajliin/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Ajliin/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Ajliin/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Ajliin/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Ajliin/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Ajliin/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Ajliin/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Ajliin/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Ajliin/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Ajliin/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Ajliin/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Ajliin/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Ajliin/project-news-site/deployments", + "created_at": "2021-08-20T16:08:52Z", + "updated_at": "2021-08-27T18:20:26Z", + "pushed_at": "2021-08-27T18:20:23Z", + "git_url": "git://github.com/Ajliin/project-news-site.git", + "ssh_url": "git@github.com:Ajliin/project-news-site.git", + "clone_url": "https://github.com/Ajliin/project-news-site.git", + "svn_url": "https://github.com/Ajliin/project-news-site", + "homepage": null, + "size": 77654, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/181" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/181" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/181" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/181/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/181/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/181/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/0da0ebfee76d9602e994f82345cd82f9b5a4e5ff" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/180", + "id": 721260641, + "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMjYwNjQx", + "html_url": "https://github.com/Technigo/project-news-site/pull/180", + "diff_url": "https://github.com/Technigo/project-news-site/pull/180.diff", + "patch_url": "https://github.com/Technigo/project-news-site/pull/180.patch", + "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/180", + "number": 180, + "state": "open", + "locked": false, + "title": "Nehrwein Project News site", + "user": { + "login": "nehrwein", + "id": 77005046, + "node_id": "MDQ6VXNlcjc3MDA1MDQ2", + "avatar_url": "https://avatars.githubusercontent.com/u/77005046?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nehrwein", + "html_url": "https://github.com/nehrwein", + "followers_url": "https://api.github.com/users/nehrwein/followers", + "following_url": "https://api.github.com/users/nehrwein/following{/other_user}", + "gists_url": "https://api.github.com/users/nehrwein/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nehrwein/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nehrwein/subscriptions", + "organizations_url": "https://api.github.com/users/nehrwein/orgs", + "repos_url": "https://api.github.com/users/nehrwein/repos", + "events_url": "https://api.github.com/users/nehrwein/events{/privacy}", + "received_events_url": "https://api.github.com/users/nehrwein/received_events", + "type": "User", + "site_admin": false + }, + "body": "Link to my deplyed project:\r\nhttps://nehrwein-project-news-site.netlify.app/\r\n\r\nmy reflections on the project:\r\nI started by making three layouts in figma. As this is totally new for me, it took me lots of hours to do so. I am still uncertain, if it was helpful for me or not, because I still did a lot of designing and changing the styles after I started coding.\r\n\r\nI started by desinging the mobile first and then adding responsiveness for tablet and desktop.\r\n\r\nI realised how easy it is to loose the overview in your code, even with a rather small project like mine. So, I wonder, if it would help to code section by section and make them responsive instead of designing the whole mobile look first. I will to keep an eye on that in my future projects. And I would also like to investigate about css animations.", + "created_at": "2021-08-27T11:34:52Z", + "updated_at": "2021-08-31T12:58:46Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d26b0ce441efca019fba35d56e3819895f6a9909", + "assignee": null, + "assignees": [ + + ], + "requested_reviewers": [ + + ], + "requested_teams": [ + + ], + "labels": [ + + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/180/commits", + "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/180/comments", + "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/180/comments", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/12e2e434290a63fea7f5d1020e08eaa237c3f98e", + "head": { + "label": "nehrwein:master", + "ref": "master", + "sha": "12e2e434290a63fea7f5d1020e08eaa237c3f98e", + "user": { + "login": "nehrwein", + "id": 77005046, + "node_id": "MDQ6VXNlcjc3MDA1MDQ2", + "avatar_url": "https://avatars.githubusercontent.com/u/77005046?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nehrwein", + "html_url": "https://github.com/nehrwein", + "followers_url": "https://api.github.com/users/nehrwein/followers", + "following_url": "https://api.github.com/users/nehrwein/following{/other_user}", + "gists_url": "https://api.github.com/users/nehrwein/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nehrwein/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nehrwein/subscriptions", + "organizations_url": "https://api.github.com/users/nehrwein/orgs", + "repos_url": "https://api.github.com/users/nehrwein/repos", + "events_url": "https://api.github.com/users/nehrwein/events{/privacy}", + "received_events_url": "https://api.github.com/users/nehrwein/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 399026574, + "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjY1NzQ=", + "name": "project-news-site", + "full_name": "nehrwein/project-news-site", + "private": false, + "owner": { + "login": "nehrwein", + "id": 77005046, + "node_id": "MDQ6VXNlcjc3MDA1MDQ2", + "avatar_url": "https://avatars.githubusercontent.com/u/77005046?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nehrwein", + "html_url": "https://github.com/nehrwein", + "followers_url": "https://api.github.com/users/nehrwein/followers", + "following_url": "https://api.github.com/users/nehrwein/following{/other_user}", + "gists_url": "https://api.github.com/users/nehrwein/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nehrwein/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nehrwein/subscriptions", + "organizations_url": "https://api.github.com/users/nehrwein/orgs", + "repos_url": "https://api.github.com/users/nehrwein/repos", + "events_url": "https://api.github.com/users/nehrwein/events{/privacy}", + "received_events_url": "https://api.github.com/users/nehrwein/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/nehrwein/project-news-site", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/nehrwein/project-news-site", + "forks_url": "https://api.github.com/repos/nehrwein/project-news-site/forks", + "keys_url": "https://api.github.com/repos/nehrwein/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nehrwein/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nehrwein/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/nehrwein/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/nehrwein/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/nehrwein/project-news-site/events", + "assignees_url": "https://api.github.com/repos/nehrwein/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/nehrwein/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/nehrwein/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/nehrwein/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nehrwein/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nehrwein/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nehrwein/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nehrwein/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nehrwein/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/nehrwein/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/nehrwein/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/nehrwein/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/nehrwein/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/nehrwein/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nehrwein/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nehrwein/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nehrwein/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/nehrwein/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/nehrwein/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nehrwein/project-news-site/merges", + "archive_url": "https://api.github.com/repos/nehrwein/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nehrwein/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/nehrwein/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/nehrwein/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nehrwein/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nehrwein/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nehrwein/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/nehrwein/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/nehrwein/project-news-site/deployments", + "created_at": "2021-08-23T08:22:03Z", + "updated_at": "2021-08-31T12:58:47Z", + "pushed_at": "2021-08-31T12:58:44Z", + "git_url": "git://github.com/nehrwein/project-news-site.git", + "ssh_url": "git@github.com:nehrwein/project-news-site.git", + "clone_url": "https://github.com/nehrwein/project-news-site.git", + "svn_url": "https://github.com/nehrwein/project-news-site", + "homepage": null, + "size": 1095, + "stargazers_count": 0, + "watchers_count": 0, + "language": "HTML", + "has_issues": false, + "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, + "allow_forking": true, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "Technigo:master", + "ref": "master", + "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", + "user": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 229247684, + "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", + "name": "project-news-site", + "full_name": "Technigo/project-news-site", + "private": false, + "owner": { + "login": "Technigo", + "id": 30344334, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", + "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Technigo", + "html_url": "https://github.com/Technigo", + "followers_url": "https://api.github.com/users/Technigo/followers", + "following_url": "https://api.github.com/users/Technigo/following{/other_user}", + "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", + "organizations_url": "https://api.github.com/users/Technigo/orgs", + "repos_url": "https://api.github.com/users/Technigo/repos", + "events_url": "https://api.github.com/users/Technigo/events{/privacy}", + "received_events_url": "https://api.github.com/users/Technigo/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/Technigo/project-news-site", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Technigo/project-news-site", + "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", + "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", + "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", + "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", + "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", + "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", + "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", + "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", + "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", + "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", + "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", + "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", + "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", + "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", + "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", + "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", + "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", + "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", + "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", + "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", + "created_at": "2019-12-20T10:53:24Z", + "updated_at": "2021-08-30T13:54:47Z", + "pushed_at": "2021-09-28T15:49:02Z", + "git_url": "git://github.com/Technigo/project-news-site.git", + "ssh_url": "git@github.com:Technigo/project-news-site.git", + "clone_url": "https://github.com/Technigo/project-news-site.git", + "svn_url": "https://github.com/Technigo/project-news-site", + "homepage": null, + "size": 763, + "stargazers_count": 1, + "watchers_count": 1, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 241, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 66, + "license": null, + "allow_forking": true, + "forks": 241, + "open_issues": 66, + "watchers": 1, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/180" + }, + "html": { + "href": "https://github.com/Technigo/project-news-site/pull/180" + }, + "issue": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/180" + }, + "comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/issues/180/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/180/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/180/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/12e2e434290a63fea7f5d1020e08eaa237c3f98e" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } +] From 7b2df0cb7f4affa6e15de0141751c69fed2f1820 Mon Sep 17 00:00:00 2001 From: Sarah Mottram Date: Thu, 30 Sep 2021 10:47:52 +0200 Subject: [PATCH 03/12] added last commit message --- code/script.js | 50 ++++++++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/code/script.js b/code/script.js index b3d08dc9..c7f58185 100644 --- a/code/script.js +++ b/code/script.js @@ -1,19 +1,19 @@ // DOM selectors const main = document.getElementById("projects"); -const userInfo = document.getElementById("user-info") +const userInfo = document.getElementById("user-info"); const username = "Smelbows"; const USERS_REPOS_API = `https://api.github.com/users/${username}/repos`; const TEST_USERS_REPOS_API = `/code/test_data/sarahs-repos-testing.json`; -const fetchUserRepos = (url) => { - fetch(url) +const fetchUserRepos = (userUrl) => { + fetch(userUrl) .then((res) => res.json()) .then(filterForTechnigoRepos) .then((repos) => { - writeHTMLForUser(repos[0]) + userInfo.innerHTML = createHTMLForUser(repos[0]); repos.forEach((repo) => { - writeHTMLForRepo(repo); + main.innerHTML += createHTMLForRepo(repo); fetchPullRequests(repo); }); }); @@ -23,48 +23,50 @@ const filterForTechnigoRepos = (data) => { return data.filter((repo) => repo.name.startsWith("project")); }; -const writeHTMLForUser = (repo) => { - userInfo.innerHTML = `

${repo.owner.login}

github avatar` -} +const createHTMLForUser = (repo) => { + return `

${repo.owner.login}

github avatar`; +}; -const writeHTMLForRepo = (repo) => { - main.innerHTML += `
${repo.name}

Default branch: ${ +const createHTMLForRepo = (repo) => { + return `

${repo.name}

Default branch: ${ repo.default_branch }

Last pushed: ${new Date( repo.pushed_at - ).toDateString()}

Number of commits:

`; + }">
`; }; const fetchPullRequests = (repo) => { fetch(`https://api.github.com/repos/Technigo/${repo.name}/pulls?per_page=100`) .then((res) => res.json()) .then((data) => { - let myPullRequest; - if (repo.name === "project-weather-app") { - myPullRequest = data.find((pull) => pull.user.login === "anndimi"); - fetchCommits(myPullRequest.commits_url, repo.name); - } else if (data === []) { - document.getElementById(`commit-${repo.name}`).innerHTML += "0"; + myPullRequest = findMyPullRequest(data, repo.name); + if (myPullRequest === undefined) { + document.getElementById(`commit-${repo.name}`).innerHTML += "

Number of commits: 0

"; } else { - myPullRequest = data.find( - (pull) => pull.user.login === repo.owner.login - ); fetchCommits(myPullRequest.commits_url, repo.name); } console.log(myPullRequest); }); }; +const findMyPullRequest = (pullsData, repoName) => { + if (repoName === "project-weather-app") { + return pullsData.find((pull) => pull.user.login === "anndimi"); + } else { + return pullsData.find((pull) => pull.user.login === username); + } +}; + const fetchCommits = (url, name) => { fetch(url) .then((res) => res.json()) .then((data) => { console.log(data); - document.getElementById(`commit-${name}`).innerHTML += `${data.length}`; + document.getElementById(`commit-${name}`).innerHTML += `

Number of commits: ${data.length}

Last commit message: ${data[data.length-1].commit.message}

`; }); }; From dce291a314f2f02266ed3fcebbd03f1a1f5a4bfb Mon Sep 17 00:00:00 2001 From: Sarah Mottram Date: Fri, 1 Oct 2021 11:10:11 +0200 Subject: [PATCH 04/12] styled project, added buttons, added language class --- code/Images/GitHub-headpic.jpeg | Bin 0 -> 232262 bytes code/Images/icons8-github-24.png | Bin 0 -> 455 bytes code/chart.js | 32 +++++- code/index.html | 43 +++++++- code/script.js | 67 ++++++++++-- code/style.css | 179 ++++++++++++++++++++++++++++++- 6 files changed, 306 insertions(+), 15 deletions(-) create mode 100644 code/Images/GitHub-headpic.jpeg create mode 100644 code/Images/icons8-github-24.png diff --git a/code/Images/GitHub-headpic.jpeg b/code/Images/GitHub-headpic.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..3467dd9a5c8498566b4b59c703bcdcfeb38535ad GIT binary patch literal 232262 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 z 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 { + const labels = ["Projects completed", "Projects to go"]; + const data = [repos.length, 19-repos.length]; + + new Chart(ctx, { + type: "doughnut", + data: { + labels, + datasets: [ + { + data, + backgroundColor: ['#0b293f', '#459ec6'], + }, + ], + }, + options: { + responsive: true, + plugins: { + legend: { + position: "top", + }, + title: { + display: true, + text: "Technigo Bootcamp Projects", + }, + }, + } + }); +}; + diff --git a/code/index.html b/code/index.html index e08fd4f8..020b4f31 100644 --- a/code/index.html +++ b/code/index.html @@ -6,18 +6,51 @@ Project GitHub Tracker + + -

GitHub Tracker

-
-

Projects:

+
+

GitHub Tracker

+
+
+
+

Projects

+
+

Filter Repos by main language:

+ + + +
+
- +
+ +
- \ No newline at end of file + + + \ No newline at end of file diff --git a/code/script.js b/code/script.js index c7f58185..cc04a0c2 100644 --- a/code/script.js +++ b/code/script.js @@ -1,4 +1,7 @@ // DOM selectors +const hTMLButton = document.getElementById("HTML-button"); +const CSSButton = document.getElementById("CSS-button"); +const javascriptButton = document.getElementById("Javascript-button"); const main = document.getElementById("projects"); const userInfo = document.getElementById("user-info"); @@ -11,11 +14,13 @@ const fetchUserRepos = (userUrl) => { .then((res) => res.json()) .then(filterForTechnigoRepos) .then((repos) => { + console.log(repos); userInfo.innerHTML = createHTMLForUser(repos[0]); repos.forEach((repo) => { main.innerHTML += createHTMLForRepo(repo); fetchPullRequests(repo); }); + drawChart(repos); }); }; @@ -23,29 +28,54 @@ const filterForTechnigoRepos = (data) => { return data.filter((repo) => repo.name.startsWith("project")); }; +const filterByLanguage = (data, language) => { + return data.filter((repo) => repo.language === `${language}`); +}; + const createHTMLForUser = (repo) => { - return `

${repo.owner.login}

github avatar`; + return `github avatar

${repo.owner.login}

`; }; const createHTMLForRepo = (repo) => { - return `
`; + }">`; }; +// const createHTMLForRepo = (repo) => { +// return `
+//
+//

${repo.name}

+//

Default branch: ${repo.default_branch}

+//

Last pushed: ${new Date(repo.pushed_at).toDateString()}

+//
+//
+// +//
+// `; +// }; + const fetchPullRequests = (repo) => { fetch(`https://api.github.com/repos/Technigo/${repo.name}/pulls?per_page=100`) .then((res) => res.json()) .then((data) => { myPullRequest = findMyPullRequest(data, repo.name); if (myPullRequest === undefined) { - document.getElementById(`commit-${repo.name}`).innerHTML += "

Number of commits: 0

"; + document.getElementById(`commit-${repo.name}`).innerHTML += + "

No pull request made yet

"; } else { fetchCommits(myPullRequest.commits_url, repo.name); } @@ -66,8 +96,33 @@ const fetchCommits = (url, name) => { .then((res) => res.json()) .then((data) => { console.log(data); - document.getElementById(`commit-${name}`).innerHTML += `

Number of commits: ${data.length}

Last commit message: ${data[data.length-1].commit.message}

`; + document.getElementById( + `commit-${name}` + ).innerHTML += `

Number of commits: ${ + data.length + }

Last commit message: ${data[data.length - 1].commit.message}

`; }); }; +const hideProject = (project) => { + project.style.display === "none"; +}; + fetchUserRepos(TEST_USERS_REPOS_API); + +// Event Listeners +hTMLButton.addEventListener("click", () => { + document.querySelectorAll("HTML").forEach((project) => hideProject(project)); +}); + +CSSButton.addEventListener("click", () => { + document.querySelectorAll("CSS").forEach((project) => { + hideProject(project); + }); +}); + +javascriptButton.addEventListener("click", () => { + document + .querySelectorAll("JavaScript") + .forEach((project) => hideProject(project)); +}); diff --git a/code/style.css b/code/style.css index 2a7668d4..9d9e99ab 100644 --- a/code/style.css +++ b/code/style.css @@ -1,17 +1,182 @@ +:root { + --primary: #d9eaf1; + --secondary: #0b293f; + --third: #459ec6; +} + body { - background: #FFECE9; + font-family: 'Montserrat', sans-serif; + background-color: var(--primary); + height: 100%; + width: 100%; + margin: 0; +} + +header { + display: flex; + flex-direction: column; + align-content: center; + width: 100%; + height: 450px; + background-image: url(./Images/GitHub-headpic.jpeg); + background-color: rgba(0, 0, 0, 0.342); + background-repeat: no-repeat; + background-size: cover; +} + +h1 { + text-align: center; + color: var(--primary); + font-size: 40px; +} + +h2 { + margin-top: 3em; + text-align: center; + color: var(--secondary); + font-size: 35px; +} + +p { + line-height: 1.3; + color: var(--primary); +} + +hr { + background-color: #459ec6; + margin-top: 10%; + width: 70%; + height: 6px; + border: transparent; + border-radius: 5px; +} + +.dark { + color: var(--secondary); +} + +.name { + font-size: 20px; + color: var(--secondary); +} + +#user-info { + text-align: center; +} + +#user-info p { + font-size: 20px; } .avatar { + width: 55%; + max-width: 350px; border-radius: 50%; + margin: 1em; + border: var(--secondary) solid 1px; } + main { + margin: 5em 2em; display: grid; grid-template-columns: 1fr; + gap: 2em; +} + +/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */ +.flip-card { + background-color: transparent; + width: 300px; + height: 200px; + border-radius: 5px; + perspective: 1000px; /* Remove this if you don't want the 3D effect */ +} + +/* This container is needed to position the front and back side */ +.flip-card-inner { + position: relative; + width: 100%; + height: 100%; + text-align: center; + border: solid var(--secondary) 1px; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + border-radius: 5px; + transition: transform 0.8s; + transform-style: preserve-3d; +} + +/* Do an horizontal flip when you move the mouse over the flip box container */ +.flip-card:hover .flip-card-inner { + transform: rotateY(180deg); +} + +/* Position the front and back side */ +.flip-card-front, .flip-card-back { + position: absolute; + width: 100%; + height: 100%; + -webkit-backface-visibility: hidden; /* Safari */ + backface-visibility: hidden; +} + +/* Style the front side (fallback if image is missing) */ +.flip-card-front { + background-color: var(--secondary); + color: var(--primary); +} + +/* Style the back side */ +.flip-card-back { + background-color: var(--primary); + color: var(--secondary); + transform: rotateY(180deg); } .repo-container { + background-color: var(--secondary); + color: var(--primary); border: solid black 1px; + border-radius: 5px; + padding: 1em; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + /* height: 100%; */ +} + +.repo-name { + font-size: 26px; + color: var(--third); + text-align: center; +} + +.repo-container:hover { +} + +.chart-container { + display: flex; + align-content: center; + margin: 1em; + width: 50%; +} +#chart { +} + +a:link { + font-size: 18px; + text-decoration: none; + color: var(--primary); +} + +a:visited { + text-decoration: none; + color: var(--primary); +} + +a:hover { + font-size: 20px; + font-weight: bold; + text-decoration: none; + color: var(--third); + } @@ -21,12 +186,20 @@ main { @media (min-width: 662px) { main { - grid-template-columns: repeat(3, 1fr); + grid-template-columns: repeat(2, 1fr); + } + + .avatar { + max-width: 40%; } } @media (min-width: 1024px) { main { - grid-template-columns: repeat(4, 1fr); + grid-template-columns: repeat(3, 1fr); + } + + .avatar { + max-width: 350px; } } \ No newline at end of file From f7ddb8df72680a3ec01024a2bc43a551d6e3f351 Mon Sep 17 00:00:00 2001 From: Sarah Mottram Date: Fri, 1 Oct 2021 14:19:51 +0200 Subject: [PATCH 05/12] added cursor and extra styling --- code/Images/icons8-code-24.png | Bin 0 -> 237 bytes code/Images/icons8-css-filetype-32.png | Bin 0 -> 309 bytes code/Images/icons8-javascript-48.png | Bin 0 -> 753 bytes code/index.html | 80 +++++++++++-------------- code/script.js | 52 ++++++++-------- code/style.css | 44 ++++++++++++-- 6 files changed, 102 insertions(+), 74 deletions(-) create mode 100644 code/Images/icons8-code-24.png create mode 100644 code/Images/icons8-css-filetype-32.png create mode 100644 code/Images/icons8-javascript-48.png diff --git a/code/Images/icons8-code-24.png b/code/Images/icons8-code-24.png new file mode 100644 index 0000000000000000000000000000000000000000..551dc25c1bc54bb18e7a9c2af81edb11cb610cec GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^5+KaM1|%Pp+x`GjY)RhkE)4%caKYZ?lYt_OJY5_^ zJUZV_J;>E;z|&^m{%Ciuc&#sg)y;dpWfz;d7Ut%JY5RO=mismNS^lI&1;Pspz6HPA z)9=F>x-LIJYnQdO_C22e%UrMS+Ol^h=l(NX5)FPCcUSFHTljf5WArEe3mktrdk(O# z2tlY3Z|a5}rO+lz00r i_VkzjocM#jQzRL#8%;d=Q)n;HwG5uFelF{r5}E)Y=wZG9 literal 0 HcmV?d00001 diff --git a/code/Images/icons8-css-filetype-32.png b/code/Images/icons8-css-filetype-32.png new file mode 100644 index 0000000000000000000000000000000000000000..464ffedcfcd5cbe50baf4c7e75a911a17aa4b261 GIT binary patch literal 309 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzwj^(N7l!{JxM1({$v}};o-U3d z5v^~pJ9-^45NUYmpDqwS&tc9~>!VBajvPLtSUQK%T&YR>;Ow5+O$)j`C8KO)Z(K;eVW~)SqpV~6AdOGH4b3bkaJKy$|PNr)Vn$U zkMKERyV<>Wt@8Shchvj+&{)~~!fcE9j{~tU;@iKmh5zvSk#lS2mq_;eFQ%zIQ|C`e z4DWN>Zel2}y7j!d#U_2n=42hi!`k;Y9zEG`ewlCPf5n>DKYzCXnJ>k(f6t10r22z> zj#`as_YJNYU+j+FZ!>Lp#MtvwYu>N_3!FdlgmisoE;S7N#V&F;8R%;UPgg&ebxsLQ E01*g>W&i*H literal 0 HcmV?d00001 diff --git a/code/Images/icons8-javascript-48.png b/code/Images/icons8-javascript-48.png new file mode 100644 index 0000000000000000000000000000000000000000..5d036ae67da4012d816bc687b2a4940bb522b376 GIT binary patch literal 753 zcmVEC{{KTIj6;~4x=+QlX~x>^MlL% z&iT&c`*SYmbwQ)iXskr|a>zcUnSuNbk>NeoAhQEmY_tHY(E_YS3$Pk3z-qJrtI-0i zMhmc-B@-Yr#P8?+6HnjU0Vt^v#ODb@G6jiy1!boNz3&6>$Mg~Cw!`j1K}$P~PQdqB z7#WA=$B2H0D~WXb{qt+ z?n(MuCH)9s&}TQl^q%aTQ(SWay;}rlthFF-lnM|keZ}y zrwfWs35G|E^uGiTCJRW4gZ;TGZR>)q2Lu)Mf`Q?GYt!^usPUp?XSzx|U2y9Gq!$=M zzI+X=J<|mw#K4PYNo^%WMXLPSSwl!piC}Wtcm26ovJx+kfJ-MNL!FX_laknIY7rUuEnIGFkbwk}mCG1epjb7zw)O)&Sqc=LMLw#l$_c1T*<4gWJcB<~X>#K6QP zxW1`6#rginu%J&UEd|UiZR~10usAGYv`$B;|)8c$t?#eO#~W j{{vQ|1!y!H&Hv30%Wb!Eg|8%o00000NkvXXu0mjf>#0$n literal 0 HcmV?d00001 diff --git a/code/index.html b/code/index.html index 020b4f31..686ccf79 100644 --- a/code/index.html +++ b/code/index.html @@ -1,56 +1,46 @@ - - - - - Project GitHub Tracker - - + + + + Project GitHub Tracker + + - - - -
-

GitHub Tracker

-
-
-
-

Projects

-
-

Filter Repos by main language:

- - - -
+ + + +
+

GitHub Tracker

+
+
+
+

Projects

+
+

Filter Repos by main language:

+ + + +
-
+
- -
- -
+ +
+ +
- - + - + + + - \ No newline at end of file diff --git a/code/script.js b/code/script.js index cc04a0c2..fc99b9f9 100644 --- a/code/script.js +++ b/code/script.js @@ -37,35 +37,39 @@ const createHTMLForUser = (repo) => { }; const createHTMLForRepo = (repo) => { - return `

${repo.name}

Default branch: ${ - repo.default_branch - }

Last pushed: ${new Date( - repo.pushed_at - ).toDateString()}

${ repo.name + }

Default branch: ${repo.default_branch}

Last pushed: ${new Date( + repo.pushed_at + ).toDateString()}

`; }; // const createHTMLForRepo = (repo) => { -// return `
-//
-//

${repo.name}

-//

Default branch: ${repo.default_branch}

-//

Last pushed: ${new Date(repo.pushed_at).toDateString()}

-//
-//
-// -//
-//
`; +// return `
+//
+//
+//

${repo.name}

+//

Default branch: ${repo.default_branch}

+//

Last pushed: ${new Date(repo.pushed_at).toDateString()}

+//
+//
+//
+//
+// +//
+//

Show commit messages

+//
+ +//
+//
+//
`; // }; const fetchPullRequests = (repo) => { diff --git a/code/style.css b/code/style.css index 9d9e99ab..363f1da4 100644 --- a/code/style.css +++ b/code/style.css @@ -148,22 +148,44 @@ main { text-align: center; } -.repo-container:hover { +/* div .HTML { +background-color: whitesmoke; +background-image: url(./Images/icons8-code-24.png); +color: aliceblue; } +div .CSS { + background-color: whitesmoke; + background-image: url(./Images/icons8-css-filetype-32.png); + color: #d9eaf1; +} + +div .JavaScript { + color: transparent; + background-color: transparent; + background-image: url(./Images/icons8-javascript-48.png); + background-repeat: no-repeat; +} */ + .chart-container { display: flex; align-content: center; - margin: 1em; - width: 50%; + margin: auto; + max-width: 400px; } #chart { + transition: 0.5s; +} + +#chart:hover { + transform: scale(1.05) } a:link { font-size: 18px; text-decoration: none; color: var(--primary); + transition: 0.5s } a:visited { @@ -172,14 +194,26 @@ a:visited { } a:hover { - font-size: 20px; - font-weight: bold; text-decoration: none; + transform: scale(1.05); color: var(--third); + cursor: url(./Images/icons8-github-24.png), auto; +} +footer { + display: flex; + background-color: var(--secondary); + margin-top: 1rem; } +.icon-link > * { + font-size: 8px; +} +footer > * { + font-size: 8px; + color: var(--primary); +} From a7d07979b482e2deaeb5c6ccdfd3d696e132df06 Mon Sep 17 00:00:00 2001 From: Sarah Mottram Date: Fri, 1 Oct 2021 14:24:42 +0200 Subject: [PATCH 06/12] added netlify link and changed to live api not local json --- README.md | 2 +- code/script.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1613a3b0..5c6fd3b9 100644 --- a/README.md +++ b/README.md @@ -10,4 +10,4 @@ Describe how you approached to problem, and what tools and techniques you used t ## View it live -Every project should be deployed somewhere. Be sure to include the link to the deployed project so that the viewer can click around and see what it's all about. +https://sarah-mottram-github-tracker.netlify.app/ diff --git a/code/script.js b/code/script.js index fc99b9f9..61dcb616 100644 --- a/code/script.js +++ b/code/script.js @@ -112,7 +112,7 @@ const hideProject = (project) => { project.style.display === "none"; }; -fetchUserRepos(TEST_USERS_REPOS_API); +fetchUserRepos(USERS_REPOS_API); // Event Listeners hTMLButton.addEventListener("click", () => { From de1290591231caac1bc5fa4aa3ad059e0d3c8f2d Mon Sep 17 00:00:00 2001 From: Sarah Mottram Date: Fri, 1 Oct 2021 15:34:24 +0200 Subject: [PATCH 07/12] added hero image and corrected image styling --- code/index.html | 9 +++++++-- code/style.css | 53 +++++++++++++++++++++++-------------------------- 2 files changed, 32 insertions(+), 30 deletions(-) diff --git a/code/index.html b/code/index.html index 686ccf79..1090254e 100644 --- a/code/index.html +++ b/code/index.html @@ -14,8 +14,13 @@
-

GitHub Tracker

-
+
+
+

GitHub Tracker

+
+
+
+

Projects

diff --git a/code/style.css b/code/style.css index 363f1da4..d3461830 100644 --- a/code/style.css +++ b/code/style.css @@ -12,26 +12,35 @@ body { margin: 0; } -header { - display: flex; - flex-direction: column; - align-content: center; - width: 100%; - height: 450px; - background-image: url(./Images/GitHub-headpic.jpeg); - background-color: rgba(0, 0, 0, 0.342); +.hero-image { + background: linear-gradient(rgba(0, 0, 0, 0.342), rgba(0, 0, 0, 0.774)), url("./Images/GitHub-headpic.jpeg"); + height: 50vh; + background-position: center; background-repeat: no-repeat; background-size: cover; + position: relative; + border: transparent; + z-index: -1; +} +.hero-text { + text-align: center; + position: absolute; + top: 20%; + left: 50%; + transform: translate(-50%, -50%); + color: var(--primary); + font-size: 16px; } -h1 { - text-align: center; - color: var(--primary); - font-size: 40px; +.avatar { + width: 40%; + max-width: 350px; + border-radius: 50%; + margin-top: -20vh; + border: var(--secondary) solid 1px; } h2 { - margin-top: 3em; text-align: center; color: var(--secondary); font-size: 35px; @@ -44,7 +53,6 @@ p { hr { background-color: #459ec6; - margin-top: 10%; width: 70%; height: 6px; border: transparent; @@ -68,14 +76,6 @@ hr { font-size: 20px; } -.avatar { - width: 55%; - max-width: 350px; - border-radius: 50%; - margin: 1em; - border: var(--secondary) solid 1px; -} - main { margin: 5em 2em; display: grid; @@ -223,17 +223,14 @@ footer > * { grid-template-columns: repeat(2, 1fr); } - .avatar { - max-width: 40%; + .hero-text { + font-size: 20px; } + } @media (min-width: 1024px) { main { grid-template-columns: repeat(3, 1fr); } - - .avatar { - max-width: 350px; - } } \ No newline at end of file From 4964c4b39cc716c90ffde2cc57819d802c2b2738 Mon Sep 17 00:00:00 2001 From: Sarah Mottram Date: Fri, 1 Oct 2021 16:32:46 +0200 Subject: [PATCH 08/12] added comments and deleted test jsons --- code/Images/icons8-html-50.png | Bin 0 -> 541 bytes code/script.js | 43 +- code/style.css | 102 +- code/test_data/sarahs-repos-testing.json | 857 - code/test_data/test_pulls.json | 21650 --------------------- 5 files changed, 81 insertions(+), 22571 deletions(-) create mode 100644 code/Images/icons8-html-50.png delete mode 100644 code/test_data/sarahs-repos-testing.json delete mode 100644 code/test_data/test_pulls.json diff --git a/code/Images/icons8-html-50.png b/code/Images/icons8-html-50.png new file mode 100644 index 0000000000000000000000000000000000000000..f54570ac7acea94764b9c7783ab13730c0479733 GIT binary patch literal 541 zcmV+&0^6ESeby#WK`^%67^yaxj@ zFj)-DG+8k41`IUQKu`l0ja(EXM^yY9K@eGkI*Yx~>-J2Kb|Ljb(Q|4}SDmlwbXQIH zP$(3JQj(lr`sEsf}-I2Z8(*ijdqWLUN-B$&Df;H;RzlC_-{$ zVuW*M(8D`?t=R9Qy~&z$UWMNte2fCq;r|&Qup4{vCE9DnX50A1`2Kv@SHr%5E9!qg zOkgQK->kHCE9$O?eJ<>4!^SttjQoie+`|b>;gK}jt6{@@#s5?sdu=-&_cd|@r|~rG zi(&u7Y}6f<8*(r_kj)wkIcqs*c65H_uZ*?qWF-lWraR&z^AzSb) zV(2urUgL>0qD}hg;S-)?4#)5q-;H5L+6cKE0WCG~oy0Z_q~Pap91kTS*n$9pzw?4#vHXY{c4(45U^5E|x2G ztWU4QQQ*?3ot6i5T~dVPMiG)5MM!QGA-Pe6v^q;B`y$9{Ql9Q#e27NqysUB63j f{fB` { fetch(userUrl) @@ -28,24 +31,26 @@ const filterForTechnigoRepos = (data) => { return data.filter((repo) => repo.name.startsWith("project")); }; -const filterByLanguage = (data, language) => { - return data.filter((repo) => repo.language === `${language}`); -}; +// Not up and running yet +// const filterByLanguage = (data, language) => { +// return data.filter((repo) => repo.language === `${language}`); +// }; const createHTMLForUser = (repo) => { return `github avatar

${repo.owner.login}

`; }; const createHTMLForRepo = (repo) => { - return `

${ + return `

${ repo.name }

Default branch: ${repo.default_branch}

Last pushed: ${new Date( repo.pushed_at - ).toDateString()}

`; + ).toDateString()}

`; }; +// This is for the flip cards, which I haven't deleted as I want to come back to it later. // const createHTMLForRepo = (repo) => { // return `
//
@@ -77,17 +82,18 @@ const fetchPullRequests = (repo) => { .then((res) => res.json()) .then((data) => { myPullRequest = findMyPullRequest(data, repo.name); + // Only continues to fetch commit data if there is a pull request there if (myPullRequest === undefined) { document.getElementById(`commit-${repo.name}`).innerHTML += "

No pull request made yet

"; } else { fetchCommits(myPullRequest.commits_url, repo.name); } - console.log(myPullRequest); }); }; const findMyPullRequest = (pullsData, repoName) => { + // this project was pulled from Anna's fork if (repoName === "project-weather-app") { return pullsData.find((pull) => pull.user.login === "anndimi"); } else { @@ -108,25 +114,26 @@ const fetchCommits = (url, name) => { }); }; -const hideProject = (project) => { - project.style.display === "none"; -}; +// To hide the filtered projects, to do +// const hideProject = (project) => { +// project.style.display === "none"; +// }; fetchUserRepos(USERS_REPOS_API); // Event Listeners hTMLButton.addEventListener("click", () => { - document.querySelectorAll("HTML").forEach((project) => hideProject(project)); +// document.querySelectorAll("HTML").forEach((project) => hideProject(project)); }); CSSButton.addEventListener("click", () => { - document.querySelectorAll("CSS").forEach((project) => { - hideProject(project); - }); +// document.querySelectorAll("CSS").forEach((project) => { +// hideProject(project); +// }); }); javascriptButton.addEventListener("click", () => { document - .querySelectorAll("JavaScript") - .forEach((project) => hideProject(project)); + // .querySelectorAll("JavaScript") + // .forEach((project) => hideProject(project)); }); diff --git a/code/style.css b/code/style.css index d3461830..923c3312 100644 --- a/code/style.css +++ b/code/style.css @@ -5,7 +5,7 @@ } body { - font-family: 'Montserrat', sans-serif; + font-family: "Montserrat", sans-serif; background-color: var(--primary); height: 100%; width: 100%; @@ -13,7 +13,8 @@ body { } .hero-image { - background: linear-gradient(rgba(0, 0, 0, 0.342), rgba(0, 0, 0, 0.774)), url("./Images/GitHub-headpic.jpeg"); + background: linear-gradient(rgba(0, 0, 0, 0.342), rgba(0, 0, 0, 0.774)), + url("./Images/GitHub-headpic.jpeg"); height: 50vh; background-position: center; background-repeat: no-repeat; @@ -23,13 +24,13 @@ body { z-index: -1; } .hero-text { - text-align: center; - position: absolute; - top: 20%; - left: 50%; - transform: translate(-50%, -50%); - color: var(--primary); - font-size: 16px; + text-align: center; + position: absolute; + top: 20%; + left: 50%; + transform: translate(-50%, -50%); + color: var(--primary); + font-size: 16px; } .avatar { @@ -83,17 +84,17 @@ main { gap: 2em; } -/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */ -.flip-card { +/* I've left this code here to come back to later. I want the cards to flip and have the commit modal and link on the backside, but I haven't fitted this into my existing CSS yet */ +/* .flip-card { background-color: transparent; width: 300px; height: 200px; border-radius: 5px; - perspective: 1000px; /* Remove this if you don't want the 3D effect */ -} + perspective: 1000px; +} */ /* This container is needed to position the front and back side */ -.flip-card-inner { +/* .flip-card-inner { position: relative; width: 100%; height: 100%; @@ -103,34 +104,33 @@ main { border-radius: 5px; transition: transform 0.8s; transform-style: preserve-3d; -} +} */ /* Do an horizontal flip when you move the mouse over the flip box container */ -.flip-card:hover .flip-card-inner { +/* .flip-card:hover .flip-card-inner { transform: rotateY(180deg); -} +} */ /* Position the front and back side */ -.flip-card-front, .flip-card-back { +/* .flip-card-front, +.flip-card-back { position: absolute; width: 100%; height: 100%; - -webkit-backface-visibility: hidden; /* Safari */ + -webkit-backface-visibility: hidden; backface-visibility: hidden; -} +} */ -/* Style the front side (fallback if image is missing) */ -.flip-card-front { +/* .flip-card-front { background-color: var(--secondary); color: var(--primary); -} +} */ -/* Style the back side */ -.flip-card-back { +/* .flip-card-back { background-color: var(--primary); color: var(--secondary); transform: rotateY(180deg); -} +} */ .repo-container { background-color: var(--secondary); @@ -144,28 +144,42 @@ main { .repo-name { font-size: 26px; - color: var(--third); + color: var(--third) !important; text-align: center; } -/* div .HTML { -background-color: whitesmoke; -background-image: url(./Images/icons8-code-24.png); -color: aliceblue; +.HTML { + background-image: url(./Images/icons8-html-50.png); + background-repeat: no-repeat; + background-size: 5vh; + border: transparent; + box-shadow: unset; + background-color: white; } -div .CSS { - background-color: whitesmoke; +.HTML > p { + color: var(--secondary); +} + +.HTML > div > p{ + color: var(--secondary); +} + +.CSS { background-image: url(./Images/icons8-css-filetype-32.png); - color: #d9eaf1; + background-repeat: no-repeat; + background-size: 5vh; + border: transparent; + box-shadow: unset; } -div .JavaScript { - color: transparent; - background-color: transparent; +.JavaScript { background-image: url(./Images/icons8-javascript-48.png); background-repeat: no-repeat; -} */ + background-size: 5vh; + border: transparent; + box-shadow: unset; +} .chart-container { display: flex; @@ -178,14 +192,14 @@ div .JavaScript { } #chart:hover { - transform: scale(1.05) + transform: scale(1.05); } a:link { - font-size: 18px; + font-size: 18px; text-decoration: none; color: var(--primary); - transition: 0.5s + transition: 0.5s; } a:visited { @@ -215,9 +229,6 @@ footer > * { color: var(--primary); } - - - @media (min-width: 662px) { main { grid-template-columns: repeat(2, 1fr); @@ -226,11 +237,10 @@ footer > * { .hero-text { font-size: 20px; } - } @media (min-width: 1024px) { main { grid-template-columns: repeat(3, 1fr); } -} \ No newline at end of file +} diff --git a/code/test_data/sarahs-repos-testing.json b/code/test_data/sarahs-repos-testing.json deleted file mode 100644 index 0aff3630..00000000 --- a/code/test_data/sarahs-repos-testing.json +++ /dev/null @@ -1,857 +0,0 @@ -[ - { - "id": 276050977, - "node_id": "MDEwOlJlcG9zaXRvcnkyNzYwNTA5Nzc=", - "name": "Complete-Python-3-Bootcamp", - "full_name": "Smelbows/Complete-Python-3-Bootcamp", - "private": false, - "owner": { - "login": "Smelbows", - "id": 67631502, - "node_id": "MDQ6VXNlcjY3NjMxNTAy", - "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Smelbows", - "html_url": "https://github.com/Smelbows", - "followers_url": "https://api.github.com/users/Smelbows/followers", - "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", - "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", - "organizations_url": "https://api.github.com/users/Smelbows/orgs", - "repos_url": "https://api.github.com/users/Smelbows/repos", - "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", - "received_events_url": "https://api.github.com/users/Smelbows/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Smelbows/Complete-Python-3-Bootcamp", - "description": "Course Files for Complete Python 3 Bootcamp Course on Udemy", - "fork": true, - "url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp", - "forks_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/forks", - "keys_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/teams", - "hooks_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/hooks", - "issue_events_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/issues/events{/number}", - "events_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/events", - "assignees_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/assignees{/user}", - "branches_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/branches{/branch}", - "tags_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/tags", - "blobs_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/languages", - "stargazers_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/stargazers", - "contributors_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/contributors", - "subscribers_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/subscribers", - "subscription_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/subscription", - "commits_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/contents/{+path}", - "compare_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/merges", - "archive_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/downloads", - "issues_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/issues{/number}", - "pulls_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/labels{/name}", - "releases_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/releases{/id}", - "deployments_url": "https://api.github.com/repos/Smelbows/Complete-Python-3-Bootcamp/deployments", - "created_at": "2020-06-30T09:09:08Z", - "updated_at": "2020-06-30T09:09:09Z", - "pushed_at": "2020-06-28T18:27:07Z", - "git_url": "git://github.com/Smelbows/Complete-Python-3-Bootcamp.git", - "ssh_url": "git@github.com:Smelbows/Complete-Python-3-Bootcamp.git", - "clone_url": "https://github.com/Smelbows/Complete-Python-3-Bootcamp.git", - "svn_url": "https://github.com/Smelbows/Complete-Python-3-Bootcamp", - "homepage": null, - "size": 37128, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - }, - { - "id": 401261589, - "node_id": "MDEwOlJlcG9zaXRvcnk0MDEyNjE1ODk=", - "name": "project-business-site", - "full_name": "Smelbows/project-business-site", - "private": false, - "owner": { - "login": "Smelbows", - "id": 67631502, - "node_id": "MDQ6VXNlcjY3NjMxNTAy", - "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Smelbows", - "html_url": "https://github.com/Smelbows", - "followers_url": "https://api.github.com/users/Smelbows/followers", - "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", - "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", - "organizations_url": "https://api.github.com/users/Smelbows/orgs", - "repos_url": "https://api.github.com/users/Smelbows/repos", - "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", - "received_events_url": "https://api.github.com/users/Smelbows/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Smelbows/project-business-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Smelbows/project-business-site", - "forks_url": "https://api.github.com/repos/Smelbows/project-business-site/forks", - "keys_url": "https://api.github.com/repos/Smelbows/project-business-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Smelbows/project-business-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Smelbows/project-business-site/teams", - "hooks_url": "https://api.github.com/repos/Smelbows/project-business-site/hooks", - "issue_events_url": "https://api.github.com/repos/Smelbows/project-business-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Smelbows/project-business-site/events", - "assignees_url": "https://api.github.com/repos/Smelbows/project-business-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Smelbows/project-business-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Smelbows/project-business-site/tags", - "blobs_url": "https://api.github.com/repos/Smelbows/project-business-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Smelbows/project-business-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Smelbows/project-business-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Smelbows/project-business-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Smelbows/project-business-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Smelbows/project-business-site/languages", - "stargazers_url": "https://api.github.com/repos/Smelbows/project-business-site/stargazers", - "contributors_url": "https://api.github.com/repos/Smelbows/project-business-site/contributors", - "subscribers_url": "https://api.github.com/repos/Smelbows/project-business-site/subscribers", - "subscription_url": "https://api.github.com/repos/Smelbows/project-business-site/subscription", - "commits_url": "https://api.github.com/repos/Smelbows/project-business-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Smelbows/project-business-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Smelbows/project-business-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Smelbows/project-business-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Smelbows/project-business-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Smelbows/project-business-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Smelbows/project-business-site/merges", - "archive_url": "https://api.github.com/repos/Smelbows/project-business-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Smelbows/project-business-site/downloads", - "issues_url": "https://api.github.com/repos/Smelbows/project-business-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Smelbows/project-business-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Smelbows/project-business-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Smelbows/project-business-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Smelbows/project-business-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Smelbows/project-business-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Smelbows/project-business-site/deployments", - "created_at": "2021-08-30T07:55:33Z", - "updated_at": "2021-09-05T13:33:15Z", - "pushed_at": "2021-09-05T13:33:12Z", - "git_url": "git://github.com/Smelbows/project-business-site.git", - "ssh_url": "git@github.com:Smelbows/project-business-site.git", - "clone_url": "https://github.com/Smelbows/project-business-site.git", - "svn_url": "https://github.com/Smelbows/project-business-site", - "homepage": null, - "size": 139962, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - }, - { - "id": 403600365, - "node_id": "MDEwOlJlcG9zaXRvcnk0MDM2MDAzNjU=", - "name": "project-chatbot", - "full_name": "Smelbows/project-chatbot", - "private": false, - "owner": { - "login": "Smelbows", - "id": 67631502, - "node_id": "MDQ6VXNlcjY3NjMxNTAy", - "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Smelbows", - "html_url": "https://github.com/Smelbows", - "followers_url": "https://api.github.com/users/Smelbows/followers", - "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", - "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", - "organizations_url": "https://api.github.com/users/Smelbows/orgs", - "repos_url": "https://api.github.com/users/Smelbows/repos", - "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", - "received_events_url": "https://api.github.com/users/Smelbows/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Smelbows/project-chatbot", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Smelbows/project-chatbot", - "forks_url": "https://api.github.com/repos/Smelbows/project-chatbot/forks", - "keys_url": "https://api.github.com/repos/Smelbows/project-chatbot/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Smelbows/project-chatbot/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Smelbows/project-chatbot/teams", - "hooks_url": "https://api.github.com/repos/Smelbows/project-chatbot/hooks", - "issue_events_url": "https://api.github.com/repos/Smelbows/project-chatbot/issues/events{/number}", - "events_url": "https://api.github.com/repos/Smelbows/project-chatbot/events", - "assignees_url": "https://api.github.com/repos/Smelbows/project-chatbot/assignees{/user}", - "branches_url": "https://api.github.com/repos/Smelbows/project-chatbot/branches{/branch}", - "tags_url": "https://api.github.com/repos/Smelbows/project-chatbot/tags", - "blobs_url": "https://api.github.com/repos/Smelbows/project-chatbot/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Smelbows/project-chatbot/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Smelbows/project-chatbot/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Smelbows/project-chatbot/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Smelbows/project-chatbot/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Smelbows/project-chatbot/languages", - "stargazers_url": "https://api.github.com/repos/Smelbows/project-chatbot/stargazers", - "contributors_url": "https://api.github.com/repos/Smelbows/project-chatbot/contributors", - "subscribers_url": "https://api.github.com/repos/Smelbows/project-chatbot/subscribers", - "subscription_url": "https://api.github.com/repos/Smelbows/project-chatbot/subscription", - "commits_url": "https://api.github.com/repos/Smelbows/project-chatbot/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Smelbows/project-chatbot/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Smelbows/project-chatbot/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Smelbows/project-chatbot/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Smelbows/project-chatbot/contents/{+path}", - "compare_url": "https://api.github.com/repos/Smelbows/project-chatbot/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Smelbows/project-chatbot/merges", - "archive_url": "https://api.github.com/repos/Smelbows/project-chatbot/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Smelbows/project-chatbot/downloads", - "issues_url": "https://api.github.com/repos/Smelbows/project-chatbot/issues{/number}", - "pulls_url": "https://api.github.com/repos/Smelbows/project-chatbot/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Smelbows/project-chatbot/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Smelbows/project-chatbot/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Smelbows/project-chatbot/labels{/name}", - "releases_url": "https://api.github.com/repos/Smelbows/project-chatbot/releases{/id}", - "deployments_url": "https://api.github.com/repos/Smelbows/project-chatbot/deployments", - "created_at": "2021-09-06T11:41:27Z", - "updated_at": "2021-09-15T12:54:37Z", - "pushed_at": "2021-09-15T12:54:34Z", - "git_url": "git://github.com/Smelbows/project-chatbot.git", - "ssh_url": "git@github.com:Smelbows/project-chatbot.git", - "clone_url": "https://github.com/Smelbows/project-chatbot.git", - "svn_url": "https://github.com/Smelbows/project-chatbot", - "homepage": null, - "size": 2682, - "stargazers_count": 0, - "watchers_count": 0, - "language": "JavaScript", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 1, - "open_issues": 0, - "watchers": 0, - "default_branch": "main" - }, - { - "id": 411276090, - "node_id": "R_kgDOGIOTOg", - "name": "project-github-tracker", - "full_name": "Smelbows/project-github-tracker", - "private": false, - "owner": { - "login": "Smelbows", - "id": 67631502, - "node_id": "MDQ6VXNlcjY3NjMxNTAy", - "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Smelbows", - "html_url": "https://github.com/Smelbows", - "followers_url": "https://api.github.com/users/Smelbows/followers", - "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", - "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", - "organizations_url": "https://api.github.com/users/Smelbows/orgs", - "repos_url": "https://api.github.com/users/Smelbows/repos", - "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", - "received_events_url": "https://api.github.com/users/Smelbows/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Smelbows/project-github-tracker", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Smelbows/project-github-tracker", - "forks_url": "https://api.github.com/repos/Smelbows/project-github-tracker/forks", - "keys_url": "https://api.github.com/repos/Smelbows/project-github-tracker/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Smelbows/project-github-tracker/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Smelbows/project-github-tracker/teams", - "hooks_url": "https://api.github.com/repos/Smelbows/project-github-tracker/hooks", - "issue_events_url": "https://api.github.com/repos/Smelbows/project-github-tracker/issues/events{/number}", - "events_url": "https://api.github.com/repos/Smelbows/project-github-tracker/events", - "assignees_url": "https://api.github.com/repos/Smelbows/project-github-tracker/assignees{/user}", - "branches_url": "https://api.github.com/repos/Smelbows/project-github-tracker/branches{/branch}", - "tags_url": "https://api.github.com/repos/Smelbows/project-github-tracker/tags", - "blobs_url": "https://api.github.com/repos/Smelbows/project-github-tracker/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Smelbows/project-github-tracker/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Smelbows/project-github-tracker/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Smelbows/project-github-tracker/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Smelbows/project-github-tracker/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Smelbows/project-github-tracker/languages", - "stargazers_url": "https://api.github.com/repos/Smelbows/project-github-tracker/stargazers", - "contributors_url": "https://api.github.com/repos/Smelbows/project-github-tracker/contributors", - "subscribers_url": "https://api.github.com/repos/Smelbows/project-github-tracker/subscribers", - "subscription_url": "https://api.github.com/repos/Smelbows/project-github-tracker/subscription", - "commits_url": "https://api.github.com/repos/Smelbows/project-github-tracker/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Smelbows/project-github-tracker/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Smelbows/project-github-tracker/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Smelbows/project-github-tracker/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Smelbows/project-github-tracker/contents/{+path}", - "compare_url": "https://api.github.com/repos/Smelbows/project-github-tracker/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Smelbows/project-github-tracker/merges", - "archive_url": "https://api.github.com/repos/Smelbows/project-github-tracker/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Smelbows/project-github-tracker/downloads", - "issues_url": "https://api.github.com/repos/Smelbows/project-github-tracker/issues{/number}", - "pulls_url": "https://api.github.com/repos/Smelbows/project-github-tracker/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Smelbows/project-github-tracker/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Smelbows/project-github-tracker/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Smelbows/project-github-tracker/labels{/name}", - "releases_url": "https://api.github.com/repos/Smelbows/project-github-tracker/releases{/id}", - "deployments_url": "https://api.github.com/repos/Smelbows/project-github-tracker/deployments", - "created_at": "2021-09-28T12:39:56Z", - "updated_at": "2021-09-28T12:39:57Z", - "pushed_at": "2021-09-24T06:28:19Z", - "git_url": "git://github.com/Smelbows/project-github-tracker.git", - "ssh_url": "git@github.com:Smelbows/project-github-tracker.git", - "clone_url": "https://github.com/Smelbows/project-github-tracker.git", - "svn_url": "https://github.com/Smelbows/project-github-tracker", - "homepage": null, - "size": 2, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "main" - }, - { - "id": 405934867, - "node_id": "MDEwOlJlcG9zaXRvcnk0MDU5MzQ4Njc=", - "name": "project-guess-who", - "full_name": "Smelbows/project-guess-who", - "private": false, - "owner": { - "login": "Smelbows", - "id": 67631502, - "node_id": "MDQ6VXNlcjY3NjMxNTAy", - "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Smelbows", - "html_url": "https://github.com/Smelbows", - "followers_url": "https://api.github.com/users/Smelbows/followers", - "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", - "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", - "organizations_url": "https://api.github.com/users/Smelbows/orgs", - "repos_url": "https://api.github.com/users/Smelbows/repos", - "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", - "received_events_url": "https://api.github.com/users/Smelbows/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Smelbows/project-guess-who", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Smelbows/project-guess-who", - "forks_url": "https://api.github.com/repos/Smelbows/project-guess-who/forks", - "keys_url": "https://api.github.com/repos/Smelbows/project-guess-who/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Smelbows/project-guess-who/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Smelbows/project-guess-who/teams", - "hooks_url": "https://api.github.com/repos/Smelbows/project-guess-who/hooks", - "issue_events_url": "https://api.github.com/repos/Smelbows/project-guess-who/issues/events{/number}", - "events_url": "https://api.github.com/repos/Smelbows/project-guess-who/events", - "assignees_url": "https://api.github.com/repos/Smelbows/project-guess-who/assignees{/user}", - "branches_url": "https://api.github.com/repos/Smelbows/project-guess-who/branches{/branch}", - "tags_url": "https://api.github.com/repos/Smelbows/project-guess-who/tags", - "blobs_url": "https://api.github.com/repos/Smelbows/project-guess-who/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Smelbows/project-guess-who/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Smelbows/project-guess-who/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Smelbows/project-guess-who/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Smelbows/project-guess-who/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Smelbows/project-guess-who/languages", - "stargazers_url": "https://api.github.com/repos/Smelbows/project-guess-who/stargazers", - "contributors_url": "https://api.github.com/repos/Smelbows/project-guess-who/contributors", - "subscribers_url": "https://api.github.com/repos/Smelbows/project-guess-who/subscribers", - "subscription_url": "https://api.github.com/repos/Smelbows/project-guess-who/subscription", - "commits_url": "https://api.github.com/repos/Smelbows/project-guess-who/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Smelbows/project-guess-who/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Smelbows/project-guess-who/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Smelbows/project-guess-who/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Smelbows/project-guess-who/contents/{+path}", - "compare_url": "https://api.github.com/repos/Smelbows/project-guess-who/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Smelbows/project-guess-who/merges", - "archive_url": "https://api.github.com/repos/Smelbows/project-guess-who/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Smelbows/project-guess-who/downloads", - "issues_url": "https://api.github.com/repos/Smelbows/project-guess-who/issues{/number}", - "pulls_url": "https://api.github.com/repos/Smelbows/project-guess-who/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Smelbows/project-guess-who/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Smelbows/project-guess-who/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Smelbows/project-guess-who/labels{/name}", - "releases_url": "https://api.github.com/repos/Smelbows/project-guess-who/releases{/id}", - "deployments_url": "https://api.github.com/repos/Smelbows/project-guess-who/deployments", - "created_at": "2021-09-13T10:54:14Z", - "updated_at": "2021-09-17T14:12:31Z", - "pushed_at": "2021-09-17T14:12:28Z", - "git_url": "git://github.com/Smelbows/project-guess-who.git", - "ssh_url": "git@github.com:Smelbows/project-guess-who.git", - "clone_url": "https://github.com/Smelbows/project-guess-who.git", - "svn_url": "https://github.com/Smelbows/project-guess-who", - "homepage": null, - "size": 760, - "stargazers_count": 0, - "watchers_count": 0, - "language": "JavaScript", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "main" - }, - { - "id": 399080438, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwODA0Mzg=", - "name": "project-news-site", - "full_name": "Smelbows/project-news-site", - "private": false, - "owner": { - "login": "Smelbows", - "id": 67631502, - "node_id": "MDQ6VXNlcjY3NjMxNTAy", - "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Smelbows", - "html_url": "https://github.com/Smelbows", - "followers_url": "https://api.github.com/users/Smelbows/followers", - "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", - "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", - "organizations_url": "https://api.github.com/users/Smelbows/orgs", - "repos_url": "https://api.github.com/users/Smelbows/repos", - "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", - "received_events_url": "https://api.github.com/users/Smelbows/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Smelbows/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Smelbows/project-news-site", - "forks_url": "https://api.github.com/repos/Smelbows/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Smelbows/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Smelbows/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Smelbows/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Smelbows/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Smelbows/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Smelbows/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Smelbows/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Smelbows/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Smelbows/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Smelbows/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Smelbows/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Smelbows/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Smelbows/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Smelbows/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Smelbows/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Smelbows/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Smelbows/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Smelbows/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Smelbows/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Smelbows/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Smelbows/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Smelbows/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Smelbows/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Smelbows/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Smelbows/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Smelbows/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Smelbows/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Smelbows/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Smelbows/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Smelbows/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Smelbows/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Smelbows/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Smelbows/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Smelbows/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Smelbows/project-news-site/deployments", - "created_at": "2021-08-23T11:40:28Z", - "updated_at": "2021-08-27T07:17:52Z", - "pushed_at": "2021-08-27T07:17:50Z", - "git_url": "git://github.com/Smelbows/project-news-site.git", - "ssh_url": "git@github.com:Smelbows/project-news-site.git", - "clone_url": "https://github.com/Smelbows/project-news-site.git", - "svn_url": "https://github.com/Smelbows/project-news-site", - "homepage": null, - "size": 842, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - }, - { - "id": 410780879, - "node_id": "R_kgDOGHwEzw", - "name": "project-weather-app", - "full_name": "Smelbows/project-weather-app", - "private": false, - "owner": { - "login": "Smelbows", - "id": 67631502, - "node_id": "MDQ6VXNlcjY3NjMxNTAy", - "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Smelbows", - "html_url": "https://github.com/Smelbows", - "followers_url": "https://api.github.com/users/Smelbows/followers", - "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", - "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", - "organizations_url": "https://api.github.com/users/Smelbows/orgs", - "repos_url": "https://api.github.com/users/Smelbows/repos", - "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", - "received_events_url": "https://api.github.com/users/Smelbows/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Smelbows/project-weather-app", - "description": "Weather Web App", - "fork": true, - "url": "https://api.github.com/repos/Smelbows/project-weather-app", - "forks_url": "https://api.github.com/repos/Smelbows/project-weather-app/forks", - "keys_url": "https://api.github.com/repos/Smelbows/project-weather-app/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Smelbows/project-weather-app/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Smelbows/project-weather-app/teams", - "hooks_url": "https://api.github.com/repos/Smelbows/project-weather-app/hooks", - "issue_events_url": "https://api.github.com/repos/Smelbows/project-weather-app/issues/events{/number}", - "events_url": "https://api.github.com/repos/Smelbows/project-weather-app/events", - "assignees_url": "https://api.github.com/repos/Smelbows/project-weather-app/assignees{/user}", - "branches_url": "https://api.github.com/repos/Smelbows/project-weather-app/branches{/branch}", - "tags_url": "https://api.github.com/repos/Smelbows/project-weather-app/tags", - "blobs_url": "https://api.github.com/repos/Smelbows/project-weather-app/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Smelbows/project-weather-app/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Smelbows/project-weather-app/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Smelbows/project-weather-app/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Smelbows/project-weather-app/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Smelbows/project-weather-app/languages", - "stargazers_url": "https://api.github.com/repos/Smelbows/project-weather-app/stargazers", - "contributors_url": "https://api.github.com/repos/Smelbows/project-weather-app/contributors", - "subscribers_url": "https://api.github.com/repos/Smelbows/project-weather-app/subscribers", - "subscription_url": "https://api.github.com/repos/Smelbows/project-weather-app/subscription", - "commits_url": "https://api.github.com/repos/Smelbows/project-weather-app/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Smelbows/project-weather-app/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Smelbows/project-weather-app/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Smelbows/project-weather-app/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Smelbows/project-weather-app/contents/{+path}", - "compare_url": "https://api.github.com/repos/Smelbows/project-weather-app/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Smelbows/project-weather-app/merges", - "archive_url": "https://api.github.com/repos/Smelbows/project-weather-app/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Smelbows/project-weather-app/downloads", - "issues_url": "https://api.github.com/repos/Smelbows/project-weather-app/issues{/number}", - "pulls_url": "https://api.github.com/repos/Smelbows/project-weather-app/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Smelbows/project-weather-app/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Smelbows/project-weather-app/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Smelbows/project-weather-app/labels{/name}", - "releases_url": "https://api.github.com/repos/Smelbows/project-weather-app/releases{/id}", - "deployments_url": "https://api.github.com/repos/Smelbows/project-weather-app/deployments", - "created_at": "2021-09-27T07:17:43Z", - "updated_at": "2021-09-27T07:17:43Z", - "pushed_at": "2021-09-24T13:56:35Z", - "git_url": "git://github.com/Smelbows/project-weather-app.git", - "ssh_url": "git@github.com:Smelbows/project-weather-app.git", - "clone_url": "https://github.com/Smelbows/project-weather-app.git", - "svn_url": "https://github.com/Smelbows/project-weather-app", - "homepage": "", - "size": 10026, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - }, - { - "id": 364862791, - "node_id": "MDEwOlJlcG9zaXRvcnkzNjQ4NjI3OTE=", - "name": "technigo-application-glossary-word-github", - "full_name": "Smelbows/technigo-application-glossary-word-github", - "private": false, - "owner": { - "login": "Smelbows", - "id": 67631502, - "node_id": "MDQ6VXNlcjY3NjMxNTAy", - "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Smelbows", - "html_url": "https://github.com/Smelbows", - "followers_url": "https://api.github.com/users/Smelbows/followers", - "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", - "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", - "organizations_url": "https://api.github.com/users/Smelbows/orgs", - "repos_url": "https://api.github.com/users/Smelbows/repos", - "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", - "received_events_url": "https://api.github.com/users/Smelbows/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Smelbows/technigo-application-glossary-word-github", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github", - "forks_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/forks", - "keys_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/teams", - "hooks_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/hooks", - "issue_events_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/issues/events{/number}", - "events_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/events", - "assignees_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/assignees{/user}", - "branches_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/branches{/branch}", - "tags_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/tags", - "blobs_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/languages", - "stargazers_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/stargazers", - "contributors_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/contributors", - "subscribers_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/subscribers", - "subscription_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/subscription", - "commits_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/contents/{+path}", - "compare_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/merges", - "archive_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/downloads", - "issues_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/issues{/number}", - "pulls_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/labels{/name}", - "releases_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/releases{/id}", - "deployments_url": "https://api.github.com/repos/Smelbows/technigo-application-glossary-word-github/deployments", - "created_at": "2021-05-06T09:54:03Z", - "updated_at": "2021-05-06T10:45:24Z", - "pushed_at": "2021-05-06T10:45:21Z", - "git_url": "git://github.com/Smelbows/technigo-application-glossary-word-github.git", - "ssh_url": "git@github.com:Smelbows/technigo-application-glossary-word-github.git", - "clone_url": "https://github.com/Smelbows/technigo-application-glossary-word-github.git", - "svn_url": "https://github.com/Smelbows/technigo-application-glossary-word-github", - "homepage": null, - "size": 2, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "main" - }, - { - "id": 410847633, - "node_id": "R_kgDOGH0JkQ", - "name": "unit-tests", - "full_name": "Smelbows/unit-tests", - "private": false, - "owner": { - "login": "Smelbows", - "id": 67631502, - "node_id": "MDQ6VXNlcjY3NjMxNTAy", - "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Smelbows", - "html_url": "https://github.com/Smelbows", - "followers_url": "https://api.github.com/users/Smelbows/followers", - "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", - "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", - "organizations_url": "https://api.github.com/users/Smelbows/orgs", - "repos_url": "https://api.github.com/users/Smelbows/repos", - "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", - "received_events_url": "https://api.github.com/users/Smelbows/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Smelbows/unit-tests", - "description": "Challenge yourself to make all these unit tests pass!", - "fork": true, - "url": "https://api.github.com/repos/Smelbows/unit-tests", - "forks_url": "https://api.github.com/repos/Smelbows/unit-tests/forks", - "keys_url": "https://api.github.com/repos/Smelbows/unit-tests/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Smelbows/unit-tests/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Smelbows/unit-tests/teams", - "hooks_url": "https://api.github.com/repos/Smelbows/unit-tests/hooks", - "issue_events_url": "https://api.github.com/repos/Smelbows/unit-tests/issues/events{/number}", - "events_url": "https://api.github.com/repos/Smelbows/unit-tests/events", - "assignees_url": "https://api.github.com/repos/Smelbows/unit-tests/assignees{/user}", - "branches_url": "https://api.github.com/repos/Smelbows/unit-tests/branches{/branch}", - "tags_url": "https://api.github.com/repos/Smelbows/unit-tests/tags", - "blobs_url": "https://api.github.com/repos/Smelbows/unit-tests/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Smelbows/unit-tests/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Smelbows/unit-tests/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Smelbows/unit-tests/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Smelbows/unit-tests/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Smelbows/unit-tests/languages", - "stargazers_url": "https://api.github.com/repos/Smelbows/unit-tests/stargazers", - "contributors_url": "https://api.github.com/repos/Smelbows/unit-tests/contributors", - "subscribers_url": "https://api.github.com/repos/Smelbows/unit-tests/subscribers", - "subscription_url": "https://api.github.com/repos/Smelbows/unit-tests/subscription", - "commits_url": "https://api.github.com/repos/Smelbows/unit-tests/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Smelbows/unit-tests/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Smelbows/unit-tests/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Smelbows/unit-tests/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Smelbows/unit-tests/contents/{+path}", - "compare_url": "https://api.github.com/repos/Smelbows/unit-tests/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Smelbows/unit-tests/merges", - "archive_url": "https://api.github.com/repos/Smelbows/unit-tests/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Smelbows/unit-tests/downloads", - "issues_url": "https://api.github.com/repos/Smelbows/unit-tests/issues{/number}", - "pulls_url": "https://api.github.com/repos/Smelbows/unit-tests/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Smelbows/unit-tests/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Smelbows/unit-tests/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Smelbows/unit-tests/labels{/name}", - "releases_url": "https://api.github.com/repos/Smelbows/unit-tests/releases{/id}", - "deployments_url": "https://api.github.com/repos/Smelbows/unit-tests/deployments", - "created_at": "2021-09-27T10:57:38Z", - "updated_at": "2021-09-27T14:19:18Z", - "pushed_at": "2021-09-27T14:19:15Z", - "git_url": "git://github.com/Smelbows/unit-tests.git", - "ssh_url": "git@github.com:Smelbows/unit-tests.git", - "clone_url": "https://github.com/Smelbows/unit-tests.git", - "svn_url": "https://github.com/Smelbows/unit-tests", - "homepage": null, - "size": 53, - "stargazers_count": 0, - "watchers_count": 0, - "language": "JavaScript", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } -] diff --git a/code/test_data/test_pulls.json b/code/test_data/test_pulls.json deleted file mode 100644 index 947da021..00000000 --- a/code/test_data/test_pulls.json +++ /dev/null @@ -1,21650 +0,0 @@ -[ - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/249", - "id": 744945880, - "node_id": "PR_kwDODaoKxM4sZvjY", - "html_url": "https://github.com/Technigo/project-news-site/pull/249", - "diff_url": "https://github.com/Technigo/project-news-site/pull/249.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/249.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/249", - "number": 249, - "state": "open", - "locked": false, - "title": "project-news-site J ", - "user": { - "login": "Jsfrulle", - "id": 87137770, - "node_id": "MDQ6VXNlcjg3MTM3Nzcw", - "avatar_url": "https://avatars.githubusercontent.com/u/87137770?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Jsfrulle", - "html_url": "https://github.com/Jsfrulle", - "followers_url": "https://api.github.com/users/Jsfrulle/followers", - "following_url": "https://api.github.com/users/Jsfrulle/following{/other_user}", - "gists_url": "https://api.github.com/users/Jsfrulle/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Jsfrulle/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Jsfrulle/subscriptions", - "organizations_url": "https://api.github.com/users/Jsfrulle/orgs", - "repos_url": "https://api.github.com/users/Jsfrulle/repos", - "events_url": "https://api.github.com/users/Jsfrulle/events{/privacy}", - "received_events_url": "https://api.github.com/users/Jsfrulle/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-09-28T15:49:02Z", - "updated_at": "2021-09-28T15:49:02Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "299624f183e443e295f4987ff9d916615d169bdd", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/249/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/249/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/249/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/4eb04ccc7c615e4989021b960d754cda3380f362", - "head": { - "label": "Jsfrulle:master", - "ref": "master", - "sha": "4eb04ccc7c615e4989021b960d754cda3380f362", - "user": { - "login": "Jsfrulle", - "id": 87137770, - "node_id": "MDQ6VXNlcjg3MTM3Nzcw", - "avatar_url": "https://avatars.githubusercontent.com/u/87137770?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Jsfrulle", - "html_url": "https://github.com/Jsfrulle", - "followers_url": "https://api.github.com/users/Jsfrulle/followers", - "following_url": "https://api.github.com/users/Jsfrulle/following{/other_user}", - "gists_url": "https://api.github.com/users/Jsfrulle/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Jsfrulle/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Jsfrulle/subscriptions", - "organizations_url": "https://api.github.com/users/Jsfrulle/orgs", - "repos_url": "https://api.github.com/users/Jsfrulle/repos", - "events_url": "https://api.github.com/users/Jsfrulle/events{/privacy}", - "received_events_url": "https://api.github.com/users/Jsfrulle/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 397641167, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTc2NDExNjc=", - "name": "project-news-site", - "full_name": "Jsfrulle/project-news-site", - "private": false, - "owner": { - "login": "Jsfrulle", - "id": 87137770, - "node_id": "MDQ6VXNlcjg3MTM3Nzcw", - "avatar_url": "https://avatars.githubusercontent.com/u/87137770?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Jsfrulle", - "html_url": "https://github.com/Jsfrulle", - "followers_url": "https://api.github.com/users/Jsfrulle/followers", - "following_url": "https://api.github.com/users/Jsfrulle/following{/other_user}", - "gists_url": "https://api.github.com/users/Jsfrulle/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Jsfrulle/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Jsfrulle/subscriptions", - "organizations_url": "https://api.github.com/users/Jsfrulle/orgs", - "repos_url": "https://api.github.com/users/Jsfrulle/repos", - "events_url": "https://api.github.com/users/Jsfrulle/events{/privacy}", - "received_events_url": "https://api.github.com/users/Jsfrulle/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Jsfrulle/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Jsfrulle/project-news-site", - "forks_url": "https://api.github.com/repos/Jsfrulle/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Jsfrulle/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Jsfrulle/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Jsfrulle/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Jsfrulle/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Jsfrulle/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Jsfrulle/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Jsfrulle/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Jsfrulle/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Jsfrulle/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Jsfrulle/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Jsfrulle/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Jsfrulle/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Jsfrulle/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Jsfrulle/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Jsfrulle/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Jsfrulle/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Jsfrulle/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Jsfrulle/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Jsfrulle/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Jsfrulle/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Jsfrulle/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Jsfrulle/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Jsfrulle/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Jsfrulle/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Jsfrulle/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Jsfrulle/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Jsfrulle/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Jsfrulle/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Jsfrulle/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Jsfrulle/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Jsfrulle/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Jsfrulle/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Jsfrulle/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Jsfrulle/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Jsfrulle/project-news-site/deployments", - "created_at": "2021-08-18T15:01:41Z", - "updated_at": "2021-08-26T12:57:51Z", - "pushed_at": "2021-08-26T12:57:48Z", - "git_url": "git://github.com/Jsfrulle/project-news-site.git", - "ssh_url": "git@github.com:Jsfrulle/project-news-site.git", - "clone_url": "https://github.com/Jsfrulle/project-news-site.git", - "svn_url": "https://github.com/Jsfrulle/project-news-site", - "homepage": null, - "size": 2885, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/249" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/249" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/249" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/249/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/249/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/249/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/4eb04ccc7c615e4989021b960d754cda3380f362" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/247", - "id": 724259325, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzI0MjU5MzI1", - "html_url": "https://github.com/Technigo/project-news-site/pull/247", - "diff_url": "https://github.com/Technigo/project-news-site/pull/247.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/247.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/247", - "number": 247, - "state": "open", - "locked": false, - "title": "Mamite's project week 2 - responsive webb- mobile first", - "user": { - "login": "mamite100", - "id": 71432371, - "node_id": "MDQ6VXNlcjcxNDMyMzcx", - "avatar_url": "https://avatars.githubusercontent.com/u/71432371?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/mamite100", - "html_url": "https://github.com/mamite100", - "followers_url": "https://api.github.com/users/mamite100/followers", - "following_url": "https://api.github.com/users/mamite100/following{/other_user}", - "gists_url": "https://api.github.com/users/mamite100/gists{/gist_id}", - "starred_url": "https://api.github.com/users/mamite100/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/mamite100/subscriptions", - "organizations_url": "https://api.github.com/users/mamite100/orgs", - "repos_url": "https://api.github.com/users/mamite100/repos", - "events_url": "https://api.github.com/users/mamite100/events{/privacy}", - "received_events_url": "https://api.github.com/users/mamite100/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-09-01T08:40:20Z", - "updated_at": "2021-09-09T20:20:58Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "2e19195612718a754f98fc6739c8195dcc123598", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/247/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/247/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/247/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/9daace46d6c5eb64c72d24c3d60a972c2c8ebeb9", - "head": { - "label": "mamite100:master", - "ref": "master", - "sha": "9daace46d6c5eb64c72d24c3d60a972c2c8ebeb9", - "user": { - "login": "mamite100", - "id": 71432371, - "node_id": "MDQ6VXNlcjcxNDMyMzcx", - "avatar_url": "https://avatars.githubusercontent.com/u/71432371?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/mamite100", - "html_url": "https://github.com/mamite100", - "followers_url": "https://api.github.com/users/mamite100/followers", - "following_url": "https://api.github.com/users/mamite100/following{/other_user}", - "gists_url": "https://api.github.com/users/mamite100/gists{/gist_id}", - "starred_url": "https://api.github.com/users/mamite100/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/mamite100/subscriptions", - "organizations_url": "https://api.github.com/users/mamite100/orgs", - "repos_url": "https://api.github.com/users/mamite100/repos", - "events_url": "https://api.github.com/users/mamite100/events{/privacy}", - "received_events_url": "https://api.github.com/users/mamite100/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399928101, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTk5MjgxMDE=", - "name": "project-news-site", - "full_name": "mamite100/project-news-site", - "private": false, - "owner": { - "login": "mamite100", - "id": 71432371, - "node_id": "MDQ6VXNlcjcxNDMyMzcx", - "avatar_url": "https://avatars.githubusercontent.com/u/71432371?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/mamite100", - "html_url": "https://github.com/mamite100", - "followers_url": "https://api.github.com/users/mamite100/followers", - "following_url": "https://api.github.com/users/mamite100/following{/other_user}", - "gists_url": "https://api.github.com/users/mamite100/gists{/gist_id}", - "starred_url": "https://api.github.com/users/mamite100/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/mamite100/subscriptions", - "organizations_url": "https://api.github.com/users/mamite100/orgs", - "repos_url": "https://api.github.com/users/mamite100/repos", - "events_url": "https://api.github.com/users/mamite100/events{/privacy}", - "received_events_url": "https://api.github.com/users/mamite100/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/mamite100/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/mamite100/project-news-site", - "forks_url": "https://api.github.com/repos/mamite100/project-news-site/forks", - "keys_url": "https://api.github.com/repos/mamite100/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/mamite100/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/mamite100/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/mamite100/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/mamite100/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/mamite100/project-news-site/events", - "assignees_url": "https://api.github.com/repos/mamite100/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/mamite100/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/mamite100/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/mamite100/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/mamite100/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/mamite100/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/mamite100/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/mamite100/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/mamite100/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/mamite100/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/mamite100/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/mamite100/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/mamite100/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/mamite100/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/mamite100/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/mamite100/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/mamite100/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/mamite100/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/mamite100/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/mamite100/project-news-site/merges", - "archive_url": "https://api.github.com/repos/mamite100/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/mamite100/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/mamite100/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/mamite100/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/mamite100/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/mamite100/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/mamite100/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/mamite100/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/mamite100/project-news-site/deployments", - "created_at": "2021-08-25T19:00:21Z", - "updated_at": "2021-09-09T20:21:00Z", - "pushed_at": "2021-09-09T20:20:57Z", - "git_url": "git://github.com/mamite100/project-news-site.git", - "ssh_url": "git@github.com:mamite100/project-news-site.git", - "clone_url": "https://github.com/mamite100/project-news-site.git", - "svn_url": "https://github.com/mamite100/project-news-site", - "homepage": null, - "size": 30729, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/247" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/247" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/247" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/247/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/247/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/247/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/9daace46d6c5eb64c72d24c3d60a972c2c8ebeb9" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/246", - "id": 723678185, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIzNjc4MTg1", - "html_url": "https://github.com/Technigo/project-news-site/pull/246", - "diff_url": "https://github.com/Technigo/project-news-site/pull/246.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/246.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/246", - "number": 246, - "state": "open", - "locked": false, - "title": "Louise B News Site Project W.2", - "user": { - "login": "louise-becker", - "id": 81712921, - "node_id": "MDQ6VXNlcjgxNzEyOTIx", - "avatar_url": "https://avatars.githubusercontent.com/u/81712921?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/louise-becker", - "html_url": "https://github.com/louise-becker", - "followers_url": "https://api.github.com/users/louise-becker/followers", - "following_url": "https://api.github.com/users/louise-becker/following{/other_user}", - "gists_url": "https://api.github.com/users/louise-becker/gists{/gist_id}", - "starred_url": "https://api.github.com/users/louise-becker/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/louise-becker/subscriptions", - "organizations_url": "https://api.github.com/users/louise-becker/orgs", - "repos_url": "https://api.github.com/users/louise-becker/repos", - "events_url": "https://api.github.com/users/louise-becker/events{/privacy}", - "received_events_url": "https://api.github.com/users/louise-becker/received_events", - "type": "User", - "site_admin": false - }, - "body": "Link to the page - https://news-site-proj-louise-becker.netlify.app/code/\r\n\r\nI learned a lot of things but mainly about structure, of time and the site itself!\r\n\r\nI started too late and I didn't know the tools well enough to plan. However after learning grid and flex I was able to make a proper sketch of the page and this helped me to understand when it was best with grid and when with flex. If I had more time I would learn more about how to style the different parts of a page, now it's all in one color. And for the first pull I do, the site is not responsive yet.. working on it!", - "created_at": "2021-08-31T19:28:41Z", - "updated_at": "2021-09-14T20:58:50Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "c57eea61f8b938890711a5b2c2f7a39c76fd5615", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/246/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/246/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/246/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/242af22d8c80c9ccbdcc8997cdcca7d716a740eb", - "head": { - "label": "louise-becker:master", - "ref": "master", - "sha": "242af22d8c80c9ccbdcc8997cdcca7d716a740eb", - "user": { - "login": "louise-becker", - "id": 81712921, - "node_id": "MDQ6VXNlcjgxNzEyOTIx", - "avatar_url": "https://avatars.githubusercontent.com/u/81712921?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/louise-becker", - "html_url": "https://github.com/louise-becker", - "followers_url": "https://api.github.com/users/louise-becker/followers", - "following_url": "https://api.github.com/users/louise-becker/following{/other_user}", - "gists_url": "https://api.github.com/users/louise-becker/gists{/gist_id}", - "starred_url": "https://api.github.com/users/louise-becker/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/louise-becker/subscriptions", - "organizations_url": "https://api.github.com/users/louise-becker/orgs", - "repos_url": "https://api.github.com/users/louise-becker/repos", - "events_url": "https://api.github.com/users/louise-becker/events{/privacy}", - "received_events_url": "https://api.github.com/users/louise-becker/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 400740435, - "node_id": "MDEwOlJlcG9zaXRvcnk0MDA3NDA0MzU=", - "name": "project-news-site", - "full_name": "louise-becker/project-news-site", - "private": false, - "owner": { - "login": "louise-becker", - "id": 81712921, - "node_id": "MDQ6VXNlcjgxNzEyOTIx", - "avatar_url": "https://avatars.githubusercontent.com/u/81712921?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/louise-becker", - "html_url": "https://github.com/louise-becker", - "followers_url": "https://api.github.com/users/louise-becker/followers", - "following_url": "https://api.github.com/users/louise-becker/following{/other_user}", - "gists_url": "https://api.github.com/users/louise-becker/gists{/gist_id}", - "starred_url": "https://api.github.com/users/louise-becker/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/louise-becker/subscriptions", - "organizations_url": "https://api.github.com/users/louise-becker/orgs", - "repos_url": "https://api.github.com/users/louise-becker/repos", - "events_url": "https://api.github.com/users/louise-becker/events{/privacy}", - "received_events_url": "https://api.github.com/users/louise-becker/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/louise-becker/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/louise-becker/project-news-site", - "forks_url": "https://api.github.com/repos/louise-becker/project-news-site/forks", - "keys_url": "https://api.github.com/repos/louise-becker/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/louise-becker/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/louise-becker/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/louise-becker/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/louise-becker/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/louise-becker/project-news-site/events", - "assignees_url": "https://api.github.com/repos/louise-becker/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/louise-becker/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/louise-becker/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/louise-becker/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/louise-becker/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/louise-becker/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/louise-becker/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/louise-becker/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/louise-becker/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/louise-becker/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/louise-becker/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/louise-becker/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/louise-becker/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/louise-becker/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/louise-becker/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/louise-becker/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/louise-becker/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/louise-becker/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/louise-becker/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/louise-becker/project-news-site/merges", - "archive_url": "https://api.github.com/repos/louise-becker/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/louise-becker/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/louise-becker/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/louise-becker/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/louise-becker/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/louise-becker/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/louise-becker/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/louise-becker/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/louise-becker/project-news-site/deployments", - "created_at": "2021-08-28T08:19:58Z", - "updated_at": "2021-09-14T20:58:52Z", - "pushed_at": "2021-09-14T20:58:48Z", - "git_url": "git://github.com/louise-becker/project-news-site.git", - "ssh_url": "git@github.com:louise-becker/project-news-site.git", - "clone_url": "https://github.com/louise-becker/project-news-site.git", - "svn_url": "https://github.com/louise-becker/project-news-site", - "homepage": null, - "size": 902, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/246" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/246" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/246" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/246/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/246/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/246/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/242af22d8c80c9ccbdcc8997cdcca7d716a740eb" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/245", - "id": 723346773, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIzMzQ2Nzcz", - "html_url": "https://github.com/Technigo/project-news-site/pull/245", - "diff_url": "https://github.com/Technigo/project-news-site/pull/245.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/245.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/245", - "number": 245, - "state": "open", - "locked": false, - "title": "Jessica Falk Project New site", - "user": { - "login": "jessicatf", - "id": 71459967, - "node_id": "MDQ6VXNlcjcxNDU5OTY3", - "avatar_url": "https://avatars.githubusercontent.com/u/71459967?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/jessicatf", - "html_url": "https://github.com/jessicatf", - "followers_url": "https://api.github.com/users/jessicatf/followers", - "following_url": "https://api.github.com/users/jessicatf/following{/other_user}", - "gists_url": "https://api.github.com/users/jessicatf/gists{/gist_id}", - "starred_url": "https://api.github.com/users/jessicatf/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/jessicatf/subscriptions", - "organizations_url": "https://api.github.com/users/jessicatf/orgs", - "repos_url": "https://api.github.com/users/jessicatf/repos", - "events_url": "https://api.github.com/users/jessicatf/events{/privacy}", - "received_events_url": "https://api.github.com/users/jessicatf/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-31T12:56:09Z", - "updated_at": "2021-09-03T12:30:44Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "6ce0d1cb1b06affbd7472a1a4061d0bc5805fd55", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/245/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/245/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/245/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/112efc0a1e0b215a5fb3d85c6041d05b4271622b", - "head": { - "label": "jessicatf:master", - "ref": "master", - "sha": "112efc0a1e0b215a5fb3d85c6041d05b4271622b", - "user": { - "login": "jessicatf", - "id": 71459967, - "node_id": "MDQ6VXNlcjcxNDU5OTY3", - "avatar_url": "https://avatars.githubusercontent.com/u/71459967?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/jessicatf", - "html_url": "https://github.com/jessicatf", - "followers_url": "https://api.github.com/users/jessicatf/followers", - "following_url": "https://api.github.com/users/jessicatf/following{/other_user}", - "gists_url": "https://api.github.com/users/jessicatf/gists{/gist_id}", - "starred_url": "https://api.github.com/users/jessicatf/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/jessicatf/subscriptions", - "organizations_url": "https://api.github.com/users/jessicatf/orgs", - "repos_url": "https://api.github.com/users/jessicatf/repos", - "events_url": "https://api.github.com/users/jessicatf/events{/privacy}", - "received_events_url": "https://api.github.com/users/jessicatf/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398823628, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4MjM2Mjg=", - "name": "project-news-site", - "full_name": "jessicatf/project-news-site", - "private": false, - "owner": { - "login": "jessicatf", - "id": 71459967, - "node_id": "MDQ6VXNlcjcxNDU5OTY3", - "avatar_url": "https://avatars.githubusercontent.com/u/71459967?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/jessicatf", - "html_url": "https://github.com/jessicatf", - "followers_url": "https://api.github.com/users/jessicatf/followers", - "following_url": "https://api.github.com/users/jessicatf/following{/other_user}", - "gists_url": "https://api.github.com/users/jessicatf/gists{/gist_id}", - "starred_url": "https://api.github.com/users/jessicatf/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/jessicatf/subscriptions", - "organizations_url": "https://api.github.com/users/jessicatf/orgs", - "repos_url": "https://api.github.com/users/jessicatf/repos", - "events_url": "https://api.github.com/users/jessicatf/events{/privacy}", - "received_events_url": "https://api.github.com/users/jessicatf/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/jessicatf/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/jessicatf/project-news-site", - "forks_url": "https://api.github.com/repos/jessicatf/project-news-site/forks", - "keys_url": "https://api.github.com/repos/jessicatf/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/jessicatf/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/jessicatf/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/jessicatf/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/jessicatf/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/jessicatf/project-news-site/events", - "assignees_url": "https://api.github.com/repos/jessicatf/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/jessicatf/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/jessicatf/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/jessicatf/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/jessicatf/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/jessicatf/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/jessicatf/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/jessicatf/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/jessicatf/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/jessicatf/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/jessicatf/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/jessicatf/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/jessicatf/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/jessicatf/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/jessicatf/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/jessicatf/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/jessicatf/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/jessicatf/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/jessicatf/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/jessicatf/project-news-site/merges", - "archive_url": "https://api.github.com/repos/jessicatf/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/jessicatf/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/jessicatf/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/jessicatf/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/jessicatf/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/jessicatf/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/jessicatf/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/jessicatf/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/jessicatf/project-news-site/deployments", - "created_at": "2021-08-22T14:44:49Z", - "updated_at": "2021-09-03T12:30:46Z", - "pushed_at": "2021-09-03T12:30:42Z", - "git_url": "git://github.com/jessicatf/project-news-site.git", - "ssh_url": "git@github.com:jessicatf/project-news-site.git", - "clone_url": "https://github.com/jessicatf/project-news-site.git", - "svn_url": "https://github.com/jessicatf/project-news-site", - "homepage": null, - "size": 8340, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/245" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/245" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/245" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/245/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/245/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/245/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/112efc0a1e0b215a5fb3d85c6041d05b4271622b" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/244", - "id": 723339663, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIzMzM5NjYz", - "html_url": "https://github.com/Technigo/project-news-site/pull/244", - "diff_url": "https://github.com/Technigo/project-news-site/pull/244.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/244.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/244", - "number": 244, - "state": "open", - "locked": false, - "title": "Project 01 - News site", - "user": { - "login": "Alisebrink", - "id": 55890866, - "node_id": "MDQ6VXNlcjU1ODkwODY2", - "avatar_url": "https://avatars.githubusercontent.com/u/55890866?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Alisebrink", - "html_url": "https://github.com/Alisebrink", - "followers_url": "https://api.github.com/users/Alisebrink/followers", - "following_url": "https://api.github.com/users/Alisebrink/following{/other_user}", - "gists_url": "https://api.github.com/users/Alisebrink/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Alisebrink/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Alisebrink/subscriptions", - "organizations_url": "https://api.github.com/users/Alisebrink/orgs", - "repos_url": "https://api.github.com/users/Alisebrink/repos", - "events_url": "https://api.github.com/users/Alisebrink/events{/privacy}", - "received_events_url": "https://api.github.com/users/Alisebrink/received_events", - "type": "User", - "site_admin": false - }, - "body": "Here's my news site. I found it very satisfying to play around with grids and flexbox. I enjoy a bit of colour and some fun images and lingo. So here we go, the first proper project at Technigo :)\r\n\r\nHere's a link to my site on Netlify: https://alisebrink-project01-the-news-site.netlify.app/", - "created_at": "2021-08-31T12:46:55Z", - "updated_at": "2021-09-02T14:21:16Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "4bdb51d043a86cdc7909b3f14a5e35e3257ec47f", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/244/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/244/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/244/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/3f9019a33e4a105333e47cae0a96c45994c42db0", - "head": { - "label": "Alisebrink:master", - "ref": "master", - "sha": "3f9019a33e4a105333e47cae0a96c45994c42db0", - "user": { - "login": "Alisebrink", - "id": 55890866, - "node_id": "MDQ6VXNlcjU1ODkwODY2", - "avatar_url": "https://avatars.githubusercontent.com/u/55890866?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Alisebrink", - "html_url": "https://github.com/Alisebrink", - "followers_url": "https://api.github.com/users/Alisebrink/followers", - "following_url": "https://api.github.com/users/Alisebrink/following{/other_user}", - "gists_url": "https://api.github.com/users/Alisebrink/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Alisebrink/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Alisebrink/subscriptions", - "organizations_url": "https://api.github.com/users/Alisebrink/orgs", - "repos_url": "https://api.github.com/users/Alisebrink/repos", - "events_url": "https://api.github.com/users/Alisebrink/events{/privacy}", - "received_events_url": "https://api.github.com/users/Alisebrink/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398853025, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4NTMwMjU=", - "name": "project-news-site", - "full_name": "Alisebrink/project-news-site", - "private": false, - "owner": { - "login": "Alisebrink", - "id": 55890866, - "node_id": "MDQ6VXNlcjU1ODkwODY2", - "avatar_url": "https://avatars.githubusercontent.com/u/55890866?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Alisebrink", - "html_url": "https://github.com/Alisebrink", - "followers_url": "https://api.github.com/users/Alisebrink/followers", - "following_url": "https://api.github.com/users/Alisebrink/following{/other_user}", - "gists_url": "https://api.github.com/users/Alisebrink/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Alisebrink/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Alisebrink/subscriptions", - "organizations_url": "https://api.github.com/users/Alisebrink/orgs", - "repos_url": "https://api.github.com/users/Alisebrink/repos", - "events_url": "https://api.github.com/users/Alisebrink/events{/privacy}", - "received_events_url": "https://api.github.com/users/Alisebrink/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Alisebrink/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Alisebrink/project-news-site", - "forks_url": "https://api.github.com/repos/Alisebrink/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Alisebrink/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Alisebrink/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Alisebrink/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Alisebrink/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Alisebrink/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Alisebrink/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Alisebrink/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Alisebrink/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Alisebrink/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Alisebrink/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Alisebrink/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Alisebrink/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Alisebrink/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Alisebrink/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Alisebrink/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Alisebrink/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Alisebrink/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Alisebrink/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Alisebrink/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Alisebrink/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Alisebrink/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Alisebrink/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Alisebrink/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Alisebrink/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Alisebrink/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Alisebrink/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Alisebrink/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Alisebrink/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Alisebrink/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Alisebrink/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Alisebrink/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Alisebrink/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Alisebrink/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Alisebrink/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Alisebrink/project-news-site/deployments", - "created_at": "2021-08-22T16:59:38Z", - "updated_at": "2021-08-25T07:23:11Z", - "pushed_at": "2021-08-25T07:23:08Z", - "git_url": "git://github.com/Alisebrink/project-news-site.git", - "ssh_url": "git@github.com:Alisebrink/project-news-site.git", - "clone_url": "https://github.com/Alisebrink/project-news-site.git", - "svn_url": "https://github.com/Alisebrink/project-news-site", - "homepage": null, - "size": 8020, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/244" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/244" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/244" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/244/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/244/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/244/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/3f9019a33e4a105333e47cae0a96c45994c42db0" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/242", - "id": 723130560, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIzMTMwNTYw", - "html_url": "https://github.com/Technigo/project-news-site/pull/242", - "diff_url": "https://github.com/Technigo/project-news-site/pull/242.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/242.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/242", - "number": 242, - "state": "open", - "locked": false, - "title": "Week 2 - Project news site by Jenny", - "user": { - "login": "jenquach", - "id": 85080829, - "node_id": "MDQ6VXNlcjg1MDgwODI5", - "avatar_url": "https://avatars.githubusercontent.com/u/85080829?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/jenquach", - "html_url": "https://github.com/jenquach", - "followers_url": "https://api.github.com/users/jenquach/followers", - "following_url": "https://api.github.com/users/jenquach/following{/other_user}", - "gists_url": "https://api.github.com/users/jenquach/gists{/gist_id}", - "starred_url": "https://api.github.com/users/jenquach/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/jenquach/subscriptions", - "organizations_url": "https://api.github.com/users/jenquach/orgs", - "repos_url": "https://api.github.com/users/jenquach/repos", - "events_url": "https://api.github.com/users/jenquach/events{/privacy}", - "received_events_url": "https://api.github.com/users/jenquach/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-31T08:14:50Z", - "updated_at": "2021-09-06T21:08:24Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "32a4dc06cce51340b1ae06d51ca35161de9726c1", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/242/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/242/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/242/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/3efb3fb50462c93a95033659244135b318e0cfa6", - "head": { - "label": "jenquach:master", - "ref": "master", - "sha": "3efb3fb50462c93a95033659244135b318e0cfa6", - "user": { - "login": "jenquach", - "id": 85080829, - "node_id": "MDQ6VXNlcjg1MDgwODI5", - "avatar_url": "https://avatars.githubusercontent.com/u/85080829?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/jenquach", - "html_url": "https://github.com/jenquach", - "followers_url": "https://api.github.com/users/jenquach/followers", - "following_url": "https://api.github.com/users/jenquach/following{/other_user}", - "gists_url": "https://api.github.com/users/jenquach/gists{/gist_id}", - "starred_url": "https://api.github.com/users/jenquach/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/jenquach/subscriptions", - "organizations_url": "https://api.github.com/users/jenquach/orgs", - "repos_url": "https://api.github.com/users/jenquach/repos", - "events_url": "https://api.github.com/users/jenquach/events{/privacy}", - "received_events_url": "https://api.github.com/users/jenquach/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399732161, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTk3MzIxNjE=", - "name": "project-news-site", - "full_name": "jenquach/project-news-site", - "private": false, - "owner": { - "login": "jenquach", - "id": 85080829, - "node_id": "MDQ6VXNlcjg1MDgwODI5", - "avatar_url": "https://avatars.githubusercontent.com/u/85080829?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/jenquach", - "html_url": "https://github.com/jenquach", - "followers_url": "https://api.github.com/users/jenquach/followers", - "following_url": "https://api.github.com/users/jenquach/following{/other_user}", - "gists_url": "https://api.github.com/users/jenquach/gists{/gist_id}", - "starred_url": "https://api.github.com/users/jenquach/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/jenquach/subscriptions", - "organizations_url": "https://api.github.com/users/jenquach/orgs", - "repos_url": "https://api.github.com/users/jenquach/repos", - "events_url": "https://api.github.com/users/jenquach/events{/privacy}", - "received_events_url": "https://api.github.com/users/jenquach/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/jenquach/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/jenquach/project-news-site", - "forks_url": "https://api.github.com/repos/jenquach/project-news-site/forks", - "keys_url": "https://api.github.com/repos/jenquach/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/jenquach/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/jenquach/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/jenquach/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/jenquach/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/jenquach/project-news-site/events", - "assignees_url": "https://api.github.com/repos/jenquach/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/jenquach/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/jenquach/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/jenquach/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/jenquach/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/jenquach/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/jenquach/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/jenquach/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/jenquach/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/jenquach/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/jenquach/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/jenquach/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/jenquach/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/jenquach/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/jenquach/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/jenquach/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/jenquach/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/jenquach/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/jenquach/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/jenquach/project-news-site/merges", - "archive_url": "https://api.github.com/repos/jenquach/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/jenquach/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/jenquach/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/jenquach/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/jenquach/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/jenquach/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/jenquach/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/jenquach/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/jenquach/project-news-site/deployments", - "created_at": "2021-08-25T07:39:54Z", - "updated_at": "2021-09-06T21:08:26Z", - "pushed_at": "2021-09-06T21:08:23Z", - "git_url": "git://github.com/jenquach/project-news-site.git", - "ssh_url": "git@github.com:jenquach/project-news-site.git", - "clone_url": "https://github.com/jenquach/project-news-site.git", - "svn_url": "https://github.com/jenquach/project-news-site", - "homepage": null, - "size": 43249, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/242" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/242" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/242" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/242/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/242/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/242/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/3efb3fb50462c93a95033659244135b318e0cfa6" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/241", - "id": 723118745, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIzMTE4NzQ1", - "html_url": "https://github.com/Technigo/project-news-site/pull/241", - "diff_url": "https://github.com/Technigo/project-news-site/pull/241.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/241.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/241", - "number": 241, - "state": "open", - "locked": false, - "title": "Review news site Lena", - "user": { - "login": "lenisili", - "id": 84474447, - "node_id": "MDQ6VXNlcjg0NDc0NDQ3", - "avatar_url": "https://avatars.githubusercontent.com/u/84474447?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/lenisili", - "html_url": "https://github.com/lenisili", - "followers_url": "https://api.github.com/users/lenisili/followers", - "following_url": "https://api.github.com/users/lenisili/following{/other_user}", - "gists_url": "https://api.github.com/users/lenisili/gists{/gist_id}", - "starred_url": "https://api.github.com/users/lenisili/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/lenisili/subscriptions", - "organizations_url": "https://api.github.com/users/lenisili/orgs", - "repos_url": "https://api.github.com/users/lenisili/repos", - "events_url": "https://api.github.com/users/lenisili/events{/privacy}", - "received_events_url": "https://api.github.com/users/lenisili/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-31T08:00:38Z", - "updated_at": "2021-08-31T18:57:08Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "42b517bfb58c7bb80f80f69cc5c5a26f3c83394c", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/241/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/241/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/241/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/16546d87d867186e9087d10d2e2b167ad80ac815", - "head": { - "label": "lenisili:master", - "ref": "master", - "sha": "16546d87d867186e9087d10d2e2b167ad80ac815", - "user": { - "login": "lenisili", - "id": 84474447, - "node_id": "MDQ6VXNlcjg0NDc0NDQ3", - "avatar_url": "https://avatars.githubusercontent.com/u/84474447?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/lenisili", - "html_url": "https://github.com/lenisili", - "followers_url": "https://api.github.com/users/lenisili/followers", - "following_url": "https://api.github.com/users/lenisili/following{/other_user}", - "gists_url": "https://api.github.com/users/lenisili/gists{/gist_id}", - "starred_url": "https://api.github.com/users/lenisili/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/lenisili/subscriptions", - "organizations_url": "https://api.github.com/users/lenisili/orgs", - "repos_url": "https://api.github.com/users/lenisili/repos", - "events_url": "https://api.github.com/users/lenisili/events{/privacy}", - "received_events_url": "https://api.github.com/users/lenisili/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398832447, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4MzI0NDc=", - "name": "project-news-site", - "full_name": "lenisili/project-news-site", - "private": false, - "owner": { - "login": "lenisili", - "id": 84474447, - "node_id": "MDQ6VXNlcjg0NDc0NDQ3", - "avatar_url": "https://avatars.githubusercontent.com/u/84474447?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/lenisili", - "html_url": "https://github.com/lenisili", - "followers_url": "https://api.github.com/users/lenisili/followers", - "following_url": "https://api.github.com/users/lenisili/following{/other_user}", - "gists_url": "https://api.github.com/users/lenisili/gists{/gist_id}", - "starred_url": "https://api.github.com/users/lenisili/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/lenisili/subscriptions", - "organizations_url": "https://api.github.com/users/lenisili/orgs", - "repos_url": "https://api.github.com/users/lenisili/repos", - "events_url": "https://api.github.com/users/lenisili/events{/privacy}", - "received_events_url": "https://api.github.com/users/lenisili/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/lenisili/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/lenisili/project-news-site", - "forks_url": "https://api.github.com/repos/lenisili/project-news-site/forks", - "keys_url": "https://api.github.com/repos/lenisili/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/lenisili/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/lenisili/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/lenisili/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/lenisili/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/lenisili/project-news-site/events", - "assignees_url": "https://api.github.com/repos/lenisili/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/lenisili/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/lenisili/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/lenisili/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/lenisili/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/lenisili/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/lenisili/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/lenisili/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/lenisili/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/lenisili/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/lenisili/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/lenisili/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/lenisili/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/lenisili/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/lenisili/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/lenisili/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/lenisili/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/lenisili/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/lenisili/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/lenisili/project-news-site/merges", - "archive_url": "https://api.github.com/repos/lenisili/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/lenisili/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/lenisili/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/lenisili/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/lenisili/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/lenisili/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/lenisili/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/lenisili/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/lenisili/project-news-site/deployments", - "created_at": "2021-08-22T15:23:34Z", - "updated_at": "2021-08-29T19:50:30Z", - "pushed_at": "2021-08-29T19:50:28Z", - "git_url": "git://github.com/lenisili/project-news-site.git", - "ssh_url": "git@github.com:lenisili/project-news-site.git", - "clone_url": "https://github.com/lenisili/project-news-site.git", - "svn_url": "https://github.com/lenisili/project-news-site", - "homepage": null, - "size": 19335, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/241" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/241" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/241" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/241/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/241/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/241/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/16546d87d867186e9087d10d2e2b167ad80ac815" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/240", - "id": 723105696, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIzMTA1Njk2", - "html_url": "https://github.com/Technigo/project-news-site/pull/240", - "diff_url": "https://github.com/Technigo/project-news-site/pull/240.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/240.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/240", - "number": 240, - "state": "open", - "locked": false, - "title": "project-new-site by Madelene", - "user": { - "login": "MT-dotse", - "id": 81696841, - "node_id": "MDQ6VXNlcjgxNjk2ODQx", - "avatar_url": "https://avatars.githubusercontent.com/u/81696841?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/MT-dotse", - "html_url": "https://github.com/MT-dotse", - "followers_url": "https://api.github.com/users/MT-dotse/followers", - "following_url": "https://api.github.com/users/MT-dotse/following{/other_user}", - "gists_url": "https://api.github.com/users/MT-dotse/gists{/gist_id}", - "starred_url": "https://api.github.com/users/MT-dotse/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/MT-dotse/subscriptions", - "organizations_url": "https://api.github.com/users/MT-dotse/orgs", - "repos_url": "https://api.github.com/users/MT-dotse/repos", - "events_url": "https://api.github.com/users/MT-dotse/events{/privacy}", - "received_events_url": "https://api.github.com/users/MT-dotse/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-31T07:41:20Z", - "updated_at": "2021-09-14T16:06:30Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "2e307a9d356f44431c1316e2b8724dab06a1f608", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/240/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/240/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/240/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/5f475fe3d15f580a404e309f4a5f42ed3698b5a1", - "head": { - "label": "MT-dotse:master", - "ref": "master", - "sha": "5f475fe3d15f580a404e309f4a5f42ed3698b5a1", - "user": { - "login": "MT-dotse", - "id": 81696841, - "node_id": "MDQ6VXNlcjgxNjk2ODQx", - "avatar_url": "https://avatars.githubusercontent.com/u/81696841?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/MT-dotse", - "html_url": "https://github.com/MT-dotse", - "followers_url": "https://api.github.com/users/MT-dotse/followers", - "following_url": "https://api.github.com/users/MT-dotse/following{/other_user}", - "gists_url": "https://api.github.com/users/MT-dotse/gists{/gist_id}", - "starred_url": "https://api.github.com/users/MT-dotse/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/MT-dotse/subscriptions", - "organizations_url": "https://api.github.com/users/MT-dotse/orgs", - "repos_url": "https://api.github.com/users/MT-dotse/repos", - "events_url": "https://api.github.com/users/MT-dotse/events{/privacy}", - "received_events_url": "https://api.github.com/users/MT-dotse/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398818590, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4MTg1OTA=", - "name": "project-news-site", - "full_name": "MT-dotse/project-news-site", - "private": false, - "owner": { - "login": "MT-dotse", - "id": 81696841, - "node_id": "MDQ6VXNlcjgxNjk2ODQx", - "avatar_url": "https://avatars.githubusercontent.com/u/81696841?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/MT-dotse", - "html_url": "https://github.com/MT-dotse", - "followers_url": "https://api.github.com/users/MT-dotse/followers", - "following_url": "https://api.github.com/users/MT-dotse/following{/other_user}", - "gists_url": "https://api.github.com/users/MT-dotse/gists{/gist_id}", - "starred_url": "https://api.github.com/users/MT-dotse/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/MT-dotse/subscriptions", - "organizations_url": "https://api.github.com/users/MT-dotse/orgs", - "repos_url": "https://api.github.com/users/MT-dotse/repos", - "events_url": "https://api.github.com/users/MT-dotse/events{/privacy}", - "received_events_url": "https://api.github.com/users/MT-dotse/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/MT-dotse/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/MT-dotse/project-news-site", - "forks_url": "https://api.github.com/repos/MT-dotse/project-news-site/forks", - "keys_url": "https://api.github.com/repos/MT-dotse/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/MT-dotse/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/MT-dotse/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/MT-dotse/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/MT-dotse/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/MT-dotse/project-news-site/events", - "assignees_url": "https://api.github.com/repos/MT-dotse/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/MT-dotse/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/MT-dotse/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/MT-dotse/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/MT-dotse/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/MT-dotse/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/MT-dotse/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/MT-dotse/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/MT-dotse/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/MT-dotse/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/MT-dotse/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/MT-dotse/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/MT-dotse/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/MT-dotse/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/MT-dotse/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/MT-dotse/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/MT-dotse/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/MT-dotse/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/MT-dotse/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/MT-dotse/project-news-site/merges", - "archive_url": "https://api.github.com/repos/MT-dotse/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/MT-dotse/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/MT-dotse/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/MT-dotse/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/MT-dotse/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/MT-dotse/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/MT-dotse/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/MT-dotse/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/MT-dotse/project-news-site/deployments", - "created_at": "2021-08-22T14:22:43Z", - "updated_at": "2021-09-14T16:06:32Z", - "pushed_at": "2021-09-14T16:06:28Z", - "git_url": "git://github.com/MT-dotse/project-news-site.git", - "ssh_url": "git@github.com:MT-dotse/project-news-site.git", - "clone_url": "https://github.com/MT-dotse/project-news-site.git", - "svn_url": "https://github.com/MT-dotse/project-news-site", - "homepage": null, - "size": 1130, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/240" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/240" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/240" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/240/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/240/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/240/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/5f475fe3d15f580a404e309f4a5f42ed3698b5a1" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/238", - "id": 722809534, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyODA5NTM0", - "html_url": "https://github.com/Technigo/project-news-site/pull/238", - "diff_url": "https://github.com/Technigo/project-news-site/pull/238.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/238.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/238", - "number": 238, - "state": "open", - "locked": false, - "title": "Project news-site", - "user": { - "login": "Svempolin", - "id": 85078175, - "node_id": "MDQ6VXNlcjg1MDc4MTc1", - "avatar_url": "https://avatars.githubusercontent.com/u/85078175?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Svempolin", - "html_url": "https://github.com/Svempolin", - "followers_url": "https://api.github.com/users/Svempolin/followers", - "following_url": "https://api.github.com/users/Svempolin/following{/other_user}", - "gists_url": "https://api.github.com/users/Svempolin/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Svempolin/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Svempolin/subscriptions", - "organizations_url": "https://api.github.com/users/Svempolin/orgs", - "repos_url": "https://api.github.com/users/Svempolin/repos", - "events_url": "https://api.github.com/users/Svempolin/events{/privacy}", - "received_events_url": "https://api.github.com/users/Svempolin/received_events", - "type": "User", - "site_admin": false - }, - "body": "This i my first code ever.. so I'm happy that it works an proud that I managed to do it :) \r\nAnd I really feel that this is just the start. \r\n", - "created_at": "2021-08-30T20:49:13Z", - "updated_at": "2021-09-17T11:39:41Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "8a7f8c9fbdbfabe7d9a68bf4cbcc7bf84f3e4f36", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/238/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/238/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/238/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/61cecc3cd43d7cddbf8e5fcae6d2be2a82fac7d3", - "head": { - "label": "Svempolin:master", - "ref": "master", - "sha": "61cecc3cd43d7cddbf8e5fcae6d2be2a82fac7d3", - "user": { - "login": "Svempolin", - "id": 85078175, - "node_id": "MDQ6VXNlcjg1MDc4MTc1", - "avatar_url": "https://avatars.githubusercontent.com/u/85078175?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Svempolin", - "html_url": "https://github.com/Svempolin", - "followers_url": "https://api.github.com/users/Svempolin/followers", - "following_url": "https://api.github.com/users/Svempolin/following{/other_user}", - "gists_url": "https://api.github.com/users/Svempolin/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Svempolin/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Svempolin/subscriptions", - "organizations_url": "https://api.github.com/users/Svempolin/orgs", - "repos_url": "https://api.github.com/users/Svempolin/repos", - "events_url": "https://api.github.com/users/Svempolin/events{/privacy}", - "received_events_url": "https://api.github.com/users/Svempolin/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399056227, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwNTYyMjc=", - "name": "project-news-site", - "full_name": "Svempolin/project-news-site", - "private": false, - "owner": { - "login": "Svempolin", - "id": 85078175, - "node_id": "MDQ6VXNlcjg1MDc4MTc1", - "avatar_url": "https://avatars.githubusercontent.com/u/85078175?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Svempolin", - "html_url": "https://github.com/Svempolin", - "followers_url": "https://api.github.com/users/Svempolin/followers", - "following_url": "https://api.github.com/users/Svempolin/following{/other_user}", - "gists_url": "https://api.github.com/users/Svempolin/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Svempolin/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Svempolin/subscriptions", - "organizations_url": "https://api.github.com/users/Svempolin/orgs", - "repos_url": "https://api.github.com/users/Svempolin/repos", - "events_url": "https://api.github.com/users/Svempolin/events{/privacy}", - "received_events_url": "https://api.github.com/users/Svempolin/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Svempolin/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Svempolin/project-news-site", - "forks_url": "https://api.github.com/repos/Svempolin/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Svempolin/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Svempolin/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Svempolin/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Svempolin/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Svempolin/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Svempolin/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Svempolin/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Svempolin/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Svempolin/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Svempolin/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Svempolin/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Svempolin/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Svempolin/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Svempolin/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Svempolin/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Svempolin/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Svempolin/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Svempolin/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Svempolin/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Svempolin/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Svempolin/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Svempolin/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Svempolin/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Svempolin/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Svempolin/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Svempolin/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Svempolin/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Svempolin/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Svempolin/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Svempolin/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Svempolin/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Svempolin/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Svempolin/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Svempolin/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Svempolin/project-news-site/deployments", - "created_at": "2021-08-23T10:09:01Z", - "updated_at": "2021-09-17T11:39:42Z", - "pushed_at": "2021-09-17T11:39:39Z", - "git_url": "git://github.com/Svempolin/project-news-site.git", - "ssh_url": "git@github.com:Svempolin/project-news-site.git", - "clone_url": "https://github.com/Svempolin/project-news-site.git", - "svn_url": "https://github.com/Svempolin/project-news-site", - "homepage": null, - "size": 1573, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/238" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/238" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/238" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/238/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/238/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/238/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/61cecc3cd43d7cddbf8e5fcae6d2be2a82fac7d3" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/237", - "id": 722645335, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyNjQ1MzM1", - "html_url": "https://github.com/Technigo/project-news-site/pull/237", - "diff_url": "https://github.com/Technigo/project-news-site/pull/237.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/237.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/237", - "number": 237, - "state": "open", - "locked": false, - "title": "Mariuchi Queiros - News site ", - "user": { - "login": "Namumariuchi", - "id": 59955233, - "node_id": "MDQ6VXNlcjU5OTU1MjMz", - "avatar_url": "https://avatars.githubusercontent.com/u/59955233?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Namumariuchi", - "html_url": "https://github.com/Namumariuchi", - "followers_url": "https://api.github.com/users/Namumariuchi/followers", - "following_url": "https://api.github.com/users/Namumariuchi/following{/other_user}", - "gists_url": "https://api.github.com/users/Namumariuchi/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Namumariuchi/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Namumariuchi/subscriptions", - "organizations_url": "https://api.github.com/users/Namumariuchi/orgs", - "repos_url": "https://api.github.com/users/Namumariuchi/repos", - "events_url": "https://api.github.com/users/Namumariuchi/events{/privacy}", - "received_events_url": "https://api.github.com/users/Namumariuchi/received_events", - "type": "User", - "site_admin": false - }, - "body": "Link to my deployed project: https://suspicious-liskov-24ed7f.netlify.app", - "created_at": "2021-08-30T16:38:01Z", - "updated_at": "2021-09-01T13:06:51Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "9e59cdac6e2bcaebb653f562455cc15681c7dff0", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/237/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/237/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/237/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/6f5d9391c789c67a2bce284bd8f3ad94ffcfd9d7", - "head": { - "label": "Namumariuchi:master", - "ref": "master", - "sha": "6f5d9391c789c67a2bce284bd8f3ad94ffcfd9d7", - "user": { - "login": "Namumariuchi", - "id": 59955233, - "node_id": "MDQ6VXNlcjU5OTU1MjMz", - "avatar_url": "https://avatars.githubusercontent.com/u/59955233?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Namumariuchi", - "html_url": "https://github.com/Namumariuchi", - "followers_url": "https://api.github.com/users/Namumariuchi/followers", - "following_url": "https://api.github.com/users/Namumariuchi/following{/other_user}", - "gists_url": "https://api.github.com/users/Namumariuchi/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Namumariuchi/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Namumariuchi/subscriptions", - "organizations_url": "https://api.github.com/users/Namumariuchi/orgs", - "repos_url": "https://api.github.com/users/Namumariuchi/repos", - "events_url": "https://api.github.com/users/Namumariuchi/events{/privacy}", - "received_events_url": "https://api.github.com/users/Namumariuchi/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399181322, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkxODEzMjI=", - "name": "project-news-site", - "full_name": "Namumariuchi/project-news-site", - "private": false, - "owner": { - "login": "Namumariuchi", - "id": 59955233, - "node_id": "MDQ6VXNlcjU5OTU1MjMz", - "avatar_url": "https://avatars.githubusercontent.com/u/59955233?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Namumariuchi", - "html_url": "https://github.com/Namumariuchi", - "followers_url": "https://api.github.com/users/Namumariuchi/followers", - "following_url": "https://api.github.com/users/Namumariuchi/following{/other_user}", - "gists_url": "https://api.github.com/users/Namumariuchi/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Namumariuchi/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Namumariuchi/subscriptions", - "organizations_url": "https://api.github.com/users/Namumariuchi/orgs", - "repos_url": "https://api.github.com/users/Namumariuchi/repos", - "events_url": "https://api.github.com/users/Namumariuchi/events{/privacy}", - "received_events_url": "https://api.github.com/users/Namumariuchi/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Namumariuchi/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Namumariuchi/project-news-site", - "forks_url": "https://api.github.com/repos/Namumariuchi/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Namumariuchi/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Namumariuchi/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Namumariuchi/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Namumariuchi/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Namumariuchi/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Namumariuchi/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Namumariuchi/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Namumariuchi/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Namumariuchi/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Namumariuchi/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Namumariuchi/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Namumariuchi/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Namumariuchi/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Namumariuchi/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Namumariuchi/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Namumariuchi/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Namumariuchi/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Namumariuchi/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Namumariuchi/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Namumariuchi/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Namumariuchi/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Namumariuchi/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Namumariuchi/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Namumariuchi/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Namumariuchi/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Namumariuchi/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Namumariuchi/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Namumariuchi/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Namumariuchi/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Namumariuchi/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Namumariuchi/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Namumariuchi/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Namumariuchi/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Namumariuchi/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Namumariuchi/project-news-site/deployments", - "created_at": "2021-08-23T16:52:34Z", - "updated_at": "2021-08-28T17:14:53Z", - "pushed_at": "2021-08-28T17:14:50Z", - "git_url": "git://github.com/Namumariuchi/project-news-site.git", - "ssh_url": "git@github.com:Namumariuchi/project-news-site.git", - "clone_url": "https://github.com/Namumariuchi/project-news-site.git", - "svn_url": "https://github.com/Namumariuchi/project-news-site", - "homepage": null, - "size": 3195, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/237" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/237" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/237" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/237/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/237/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/237/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/6f5d9391c789c67a2bce284bd8f3ad94ffcfd9d7" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/236", - "id": 722581875, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyNTgxODc1", - "html_url": "https://github.com/Technigo/project-news-site/pull/236", - "diff_url": "https://github.com/Technigo/project-news-site/pull/236.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/236.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/236", - "number": 236, - "state": "open", - "locked": false, - "title": "My news site", - "user": { - "login": "madeleinesvensson", - "id": 56533906, - "node_id": "MDQ6VXNlcjU2NTMzOTA2", - "avatar_url": "https://avatars.githubusercontent.com/u/56533906?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/madeleinesvensson", - "html_url": "https://github.com/madeleinesvensson", - "followers_url": "https://api.github.com/users/madeleinesvensson/followers", - "following_url": "https://api.github.com/users/madeleinesvensson/following{/other_user}", - "gists_url": "https://api.github.com/users/madeleinesvensson/gists{/gist_id}", - "starred_url": "https://api.github.com/users/madeleinesvensson/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/madeleinesvensson/subscriptions", - "organizations_url": "https://api.github.com/users/madeleinesvensson/orgs", - "repos_url": "https://api.github.com/users/madeleinesvensson/repos", - "events_url": "https://api.github.com/users/madeleinesvensson/events{/privacy}", - "received_events_url": "https://api.github.com/users/madeleinesvensson/received_events", - "type": "User", - "site_admin": false - }, - "body": "My project", - "created_at": "2021-08-30T15:16:09Z", - "updated_at": "2021-09-18T15:22:23Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "bd17c1042b0ca288e6acb555a0cd34b4df8b638f", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/236/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/236/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/236/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/35997072f8a931363bf5962c840e7fcd6088f1ef", - "head": { - "label": "madeleinesvensson:master", - "ref": "master", - "sha": "35997072f8a931363bf5962c840e7fcd6088f1ef", - "user": { - "login": "madeleinesvensson", - "id": 56533906, - "node_id": "MDQ6VXNlcjU2NTMzOTA2", - "avatar_url": "https://avatars.githubusercontent.com/u/56533906?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/madeleinesvensson", - "html_url": "https://github.com/madeleinesvensson", - "followers_url": "https://api.github.com/users/madeleinesvensson/followers", - "following_url": "https://api.github.com/users/madeleinesvensson/following{/other_user}", - "gists_url": "https://api.github.com/users/madeleinesvensson/gists{/gist_id}", - "starred_url": "https://api.github.com/users/madeleinesvensson/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/madeleinesvensson/subscriptions", - "organizations_url": "https://api.github.com/users/madeleinesvensson/orgs", - "repos_url": "https://api.github.com/users/madeleinesvensson/repos", - "events_url": "https://api.github.com/users/madeleinesvensson/events{/privacy}", - "received_events_url": "https://api.github.com/users/madeleinesvensson/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399204858, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkyMDQ4NTg=", - "name": "project-news-site", - "full_name": "madeleinesvensson/project-news-site", - "private": false, - "owner": { - "login": "madeleinesvensson", - "id": 56533906, - "node_id": "MDQ6VXNlcjU2NTMzOTA2", - "avatar_url": "https://avatars.githubusercontent.com/u/56533906?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/madeleinesvensson", - "html_url": "https://github.com/madeleinesvensson", - "followers_url": "https://api.github.com/users/madeleinesvensson/followers", - "following_url": "https://api.github.com/users/madeleinesvensson/following{/other_user}", - "gists_url": "https://api.github.com/users/madeleinesvensson/gists{/gist_id}", - "starred_url": "https://api.github.com/users/madeleinesvensson/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/madeleinesvensson/subscriptions", - "organizations_url": "https://api.github.com/users/madeleinesvensson/orgs", - "repos_url": "https://api.github.com/users/madeleinesvensson/repos", - "events_url": "https://api.github.com/users/madeleinesvensson/events{/privacy}", - "received_events_url": "https://api.github.com/users/madeleinesvensson/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/madeleinesvensson/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/madeleinesvensson/project-news-site", - "forks_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/forks", - "keys_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/events", - "assignees_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/merges", - "archive_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/madeleinesvensson/project-news-site/deployments", - "created_at": "2021-08-23T18:10:22Z", - "updated_at": "2021-09-18T15:22:25Z", - "pushed_at": "2021-09-18T15:22:22Z", - "git_url": "git://github.com/madeleinesvensson/project-news-site.git", - "ssh_url": "git@github.com:madeleinesvensson/project-news-site.git", - "clone_url": "https://github.com/madeleinesvensson/project-news-site.git", - "svn_url": "https://github.com/madeleinesvensson/project-news-site", - "homepage": null, - "size": 819, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/236" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/236" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/236" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/236/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/236/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/236/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/35997072f8a931363bf5962c840e7fcd6088f1ef" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/235", - "id": 722508306, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyNTA4MzA2", - "html_url": "https://github.com/Technigo/project-news-site/pull/235", - "diff_url": "https://github.com/Technigo/project-news-site/pull/235.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/235.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/235", - "number": 235, - "state": "open", - "locked": false, - "title": "Technigo/project-news-site/a1exa", - "user": { - "login": "A1eksa", - "id": 80787783, - "node_id": "MDQ6VXNlcjgwNzg3Nzgz", - "avatar_url": "https://avatars.githubusercontent.com/u/80787783?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/A1eksa", - "html_url": "https://github.com/A1eksa", - "followers_url": "https://api.github.com/users/A1eksa/followers", - "following_url": "https://api.github.com/users/A1eksa/following{/other_user}", - "gists_url": "https://api.github.com/users/A1eksa/gists{/gist_id}", - "starred_url": "https://api.github.com/users/A1eksa/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/A1eksa/subscriptions", - "organizations_url": "https://api.github.com/users/A1eksa/orgs", - "repos_url": "https://api.github.com/users/A1eksa/repos", - "events_url": "https://api.github.com/users/A1eksa/events{/privacy}", - "received_events_url": "https://api.github.com/users/A1eksa/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-30T13:47:45Z", - "updated_at": "2021-09-01T15:56:45Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "a9c24e11fe061bff2f538a7ec1813d92340d2612", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/235/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/235/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/235/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/fca4742f59f0139593758df0963bdcb375cb53c0", - "head": { - "label": "A1eksa:master", - "ref": "master", - "sha": "fca4742f59f0139593758df0963bdcb375cb53c0", - "user": { - "login": "A1eksa", - "id": 80787783, - "node_id": "MDQ6VXNlcjgwNzg3Nzgz", - "avatar_url": "https://avatars.githubusercontent.com/u/80787783?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/A1eksa", - "html_url": "https://github.com/A1eksa", - "followers_url": "https://api.github.com/users/A1eksa/followers", - "following_url": "https://api.github.com/users/A1eksa/following{/other_user}", - "gists_url": "https://api.github.com/users/A1eksa/gists{/gist_id}", - "starred_url": "https://api.github.com/users/A1eksa/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/A1eksa/subscriptions", - "organizations_url": "https://api.github.com/users/A1eksa/orgs", - "repos_url": "https://api.github.com/users/A1eksa/repos", - "events_url": "https://api.github.com/users/A1eksa/events{/privacy}", - "received_events_url": "https://api.github.com/users/A1eksa/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399089017, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwODkwMTc=", - "name": "project-news-site", - "full_name": "A1eksa/project-news-site", - "private": false, - "owner": { - "login": "A1eksa", - "id": 80787783, - "node_id": "MDQ6VXNlcjgwNzg3Nzgz", - "avatar_url": "https://avatars.githubusercontent.com/u/80787783?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/A1eksa", - "html_url": "https://github.com/A1eksa", - "followers_url": "https://api.github.com/users/A1eksa/followers", - "following_url": "https://api.github.com/users/A1eksa/following{/other_user}", - "gists_url": "https://api.github.com/users/A1eksa/gists{/gist_id}", - "starred_url": "https://api.github.com/users/A1eksa/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/A1eksa/subscriptions", - "organizations_url": "https://api.github.com/users/A1eksa/orgs", - "repos_url": "https://api.github.com/users/A1eksa/repos", - "events_url": "https://api.github.com/users/A1eksa/events{/privacy}", - "received_events_url": "https://api.github.com/users/A1eksa/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/A1eksa/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/A1eksa/project-news-site", - "forks_url": "https://api.github.com/repos/A1eksa/project-news-site/forks", - "keys_url": "https://api.github.com/repos/A1eksa/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/A1eksa/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/A1eksa/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/A1eksa/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/A1eksa/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/A1eksa/project-news-site/events", - "assignees_url": "https://api.github.com/repos/A1eksa/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/A1eksa/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/A1eksa/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/A1eksa/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/A1eksa/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/A1eksa/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/A1eksa/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/A1eksa/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/A1eksa/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/A1eksa/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/A1eksa/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/A1eksa/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/A1eksa/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/A1eksa/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/A1eksa/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/A1eksa/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/A1eksa/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/A1eksa/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/A1eksa/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/A1eksa/project-news-site/merges", - "archive_url": "https://api.github.com/repos/A1eksa/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/A1eksa/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/A1eksa/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/A1eksa/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/A1eksa/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/A1eksa/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/A1eksa/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/A1eksa/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/A1eksa/project-news-site/deployments", - "created_at": "2021-08-23T12:06:06Z", - "updated_at": "2021-08-29T21:19:37Z", - "pushed_at": "2021-08-29T21:19:34Z", - "git_url": "git://github.com/A1eksa/project-news-site.git", - "ssh_url": "git@github.com:A1eksa/project-news-site.git", - "clone_url": "https://github.com/A1eksa/project-news-site.git", - "svn_url": "https://github.com/A1eksa/project-news-site", - "homepage": null, - "size": 3793, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/235" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/235" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/235" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/235/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/235/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/235/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/fca4742f59f0139593758df0963bdcb375cb53c0" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/234", - "id": 722334138, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMzM0MTM4", - "html_url": "https://github.com/Technigo/project-news-site/pull/234", - "diff_url": "https://github.com/Technigo/project-news-site/pull/234.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/234.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/234", - "number": 234, - "state": "open", - "locked": false, - "title": "Project news site ", - "user": { - "login": "Idautterstrom", - "id": 80784577, - "node_id": "MDQ6VXNlcjgwNzg0NTc3", - "avatar_url": "https://avatars.githubusercontent.com/u/80784577?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Idautterstrom", - "html_url": "https://github.com/Idautterstrom", - "followers_url": "https://api.github.com/users/Idautterstrom/followers", - "following_url": "https://api.github.com/users/Idautterstrom/following{/other_user}", - "gists_url": "https://api.github.com/users/Idautterstrom/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Idautterstrom/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Idautterstrom/subscriptions", - "organizations_url": "https://api.github.com/users/Idautterstrom/orgs", - "repos_url": "https://api.github.com/users/Idautterstrom/repos", - "events_url": "https://api.github.com/users/Idautterstrom/events{/privacy}", - "received_events_url": "https://api.github.com/users/Idautterstrom/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-30T09:47:48Z", - "updated_at": "2021-09-09T17:48:48Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "81c5d222395b507879f4440fdc6a2476dd6474a7", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/234/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/234/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/234/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/8997e91f7faae687aab8d642d88b8b0bd846ff87", - "head": { - "label": "Idautterstrom:master", - "ref": "master", - "sha": "8997e91f7faae687aab8d642d88b8b0bd846ff87", - "user": { - "login": "Idautterstrom", - "id": 80784577, - "node_id": "MDQ6VXNlcjgwNzg0NTc3", - "avatar_url": "https://avatars.githubusercontent.com/u/80784577?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Idautterstrom", - "html_url": "https://github.com/Idautterstrom", - "followers_url": "https://api.github.com/users/Idautterstrom/followers", - "following_url": "https://api.github.com/users/Idautterstrom/following{/other_user}", - "gists_url": "https://api.github.com/users/Idautterstrom/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Idautterstrom/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Idautterstrom/subscriptions", - "organizations_url": "https://api.github.com/users/Idautterstrom/orgs", - "repos_url": "https://api.github.com/users/Idautterstrom/repos", - "events_url": "https://api.github.com/users/Idautterstrom/events{/privacy}", - "received_events_url": "https://api.github.com/users/Idautterstrom/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399090000, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwOTAwMDA=", - "name": "project-news-site", - "full_name": "Idautterstrom/project-news-site", - "private": false, - "owner": { - "login": "Idautterstrom", - "id": 80784577, - "node_id": "MDQ6VXNlcjgwNzg0NTc3", - "avatar_url": "https://avatars.githubusercontent.com/u/80784577?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Idautterstrom", - "html_url": "https://github.com/Idautterstrom", - "followers_url": "https://api.github.com/users/Idautterstrom/followers", - "following_url": "https://api.github.com/users/Idautterstrom/following{/other_user}", - "gists_url": "https://api.github.com/users/Idautterstrom/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Idautterstrom/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Idautterstrom/subscriptions", - "organizations_url": "https://api.github.com/users/Idautterstrom/orgs", - "repos_url": "https://api.github.com/users/Idautterstrom/repos", - "events_url": "https://api.github.com/users/Idautterstrom/events{/privacy}", - "received_events_url": "https://api.github.com/users/Idautterstrom/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Idautterstrom/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Idautterstrom/project-news-site", - "forks_url": "https://api.github.com/repos/Idautterstrom/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Idautterstrom/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Idautterstrom/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Idautterstrom/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Idautterstrom/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Idautterstrom/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Idautterstrom/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Idautterstrom/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Idautterstrom/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Idautterstrom/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Idautterstrom/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Idautterstrom/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Idautterstrom/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Idautterstrom/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Idautterstrom/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Idautterstrom/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Idautterstrom/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Idautterstrom/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Idautterstrom/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Idautterstrom/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Idautterstrom/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Idautterstrom/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Idautterstrom/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Idautterstrom/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Idautterstrom/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Idautterstrom/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Idautterstrom/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Idautterstrom/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Idautterstrom/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Idautterstrom/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Idautterstrom/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Idautterstrom/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Idautterstrom/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Idautterstrom/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Idautterstrom/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Idautterstrom/project-news-site/deployments", - "created_at": "2021-08-23T12:08:44Z", - "updated_at": "2021-09-09T17:48:50Z", - "pushed_at": "2021-09-09T17:48:47Z", - "git_url": "git://github.com/Idautterstrom/project-news-site.git", - "ssh_url": "git@github.com:Idautterstrom/project-news-site.git", - "clone_url": "https://github.com/Idautterstrom/project-news-site.git", - "svn_url": "https://github.com/Idautterstrom/project-news-site", - "homepage": null, - "size": 776, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/234" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/234" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/234" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/234/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/234/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/234/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/8997e91f7faae687aab8d642d88b8b0bd846ff87" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/233", - "id": 722209874, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMjA5ODc0", - "html_url": "https://github.com/Technigo/project-news-site/pull/233", - "diff_url": "https://github.com/Technigo/project-news-site/pull/233.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/233.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/233", - "number": 233, - "state": "open", - "locked": false, - "title": "Nothing but News a project for week 2 at Technigo by Jakob Lindström", - "user": { - "login": "jakobxlindstrom", - "id": 81704544, - "node_id": "MDQ6VXNlcjgxNzA0NTQ0", - "avatar_url": "https://avatars.githubusercontent.com/u/81704544?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/jakobxlindstrom", - "html_url": "https://github.com/jakobxlindstrom", - "followers_url": "https://api.github.com/users/jakobxlindstrom/followers", - "following_url": "https://api.github.com/users/jakobxlindstrom/following{/other_user}", - "gists_url": "https://api.github.com/users/jakobxlindstrom/gists{/gist_id}", - "starred_url": "https://api.github.com/users/jakobxlindstrom/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/jakobxlindstrom/subscriptions", - "organizations_url": "https://api.github.com/users/jakobxlindstrom/orgs", - "repos_url": "https://api.github.com/users/jakobxlindstrom/repos", - "events_url": "https://api.github.com/users/jakobxlindstrom/events{/privacy}", - "received_events_url": "https://api.github.com/users/jakobxlindstrom/received_events", - "type": "User", - "site_admin": false - }, - "body": "Im super proud of the whole process from nothing to pushing through github and all that has come with it. Im very proud of that my page is responsive through flexbox more so than media queries but I have also understood the importance and great things you can do with media queries for the future of when Im going to be creating more websites. I struggled a bit with photos. I think its quite hard to optimize them and get them to adjust as I please. I think its maybe a question of uploading the correct image size for a certain position to make it the best result. \r\n\r\nHere is my Netlify link: https://confident-tesla-d13ebb.netlify.app/\r\n\r\n/Jakob Lindström", - "created_at": "2021-08-30T06:43:38Z", - "updated_at": "2021-08-31T15:37:34Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "886c6494b3ac3a60546429fd4d0645bd5e150018", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/233/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/233/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/233/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/5ae62cf3c557d59c0c94e1375404944d1a3d01bc", - "head": { - "label": "jakobxlindstrom:master", - "ref": "master", - "sha": "5ae62cf3c557d59c0c94e1375404944d1a3d01bc", - "user": { - "login": "jakobxlindstrom", - "id": 81704544, - "node_id": "MDQ6VXNlcjgxNzA0NTQ0", - "avatar_url": "https://avatars.githubusercontent.com/u/81704544?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/jakobxlindstrom", - "html_url": "https://github.com/jakobxlindstrom", - "followers_url": "https://api.github.com/users/jakobxlindstrom/followers", - "following_url": "https://api.github.com/users/jakobxlindstrom/following{/other_user}", - "gists_url": "https://api.github.com/users/jakobxlindstrom/gists{/gist_id}", - "starred_url": "https://api.github.com/users/jakobxlindstrom/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/jakobxlindstrom/subscriptions", - "organizations_url": "https://api.github.com/users/jakobxlindstrom/orgs", - "repos_url": "https://api.github.com/users/jakobxlindstrom/repos", - "events_url": "https://api.github.com/users/jakobxlindstrom/events{/privacy}", - "received_events_url": "https://api.github.com/users/jakobxlindstrom/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398892030, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4OTIwMzA=", - "name": "project-news-site", - "full_name": "jakobxlindstrom/project-news-site", - "private": false, - "owner": { - "login": "jakobxlindstrom", - "id": 81704544, - "node_id": "MDQ6VXNlcjgxNzA0NTQ0", - "avatar_url": "https://avatars.githubusercontent.com/u/81704544?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/jakobxlindstrom", - "html_url": "https://github.com/jakobxlindstrom", - "followers_url": "https://api.github.com/users/jakobxlindstrom/followers", - "following_url": "https://api.github.com/users/jakobxlindstrom/following{/other_user}", - "gists_url": "https://api.github.com/users/jakobxlindstrom/gists{/gist_id}", - "starred_url": "https://api.github.com/users/jakobxlindstrom/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/jakobxlindstrom/subscriptions", - "organizations_url": "https://api.github.com/users/jakobxlindstrom/orgs", - "repos_url": "https://api.github.com/users/jakobxlindstrom/repos", - "events_url": "https://api.github.com/users/jakobxlindstrom/events{/privacy}", - "received_events_url": "https://api.github.com/users/jakobxlindstrom/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/jakobxlindstrom/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/jakobxlindstrom/project-news-site", - "forks_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/forks", - "keys_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/events", - "assignees_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/merges", - "archive_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/jakobxlindstrom/project-news-site/deployments", - "created_at": "2021-08-22T20:13:53Z", - "updated_at": "2021-08-29T14:04:00Z", - "pushed_at": "2021-08-29T14:03:57Z", - "git_url": "git://github.com/jakobxlindstrom/project-news-site.git", - "ssh_url": "git@github.com:jakobxlindstrom/project-news-site.git", - "clone_url": "https://github.com/jakobxlindstrom/project-news-site.git", - "svn_url": "https://github.com/jakobxlindstrom/project-news-site", - "homepage": null, - "size": 773, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/233" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/233" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/233" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/233/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/233/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/233/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/5ae62cf3c557d59c0c94e1375404944d1a3d01bc" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/232", - "id": 722178074, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMTc4MDc0", - "html_url": "https://github.com/Technigo/project-news-site/pull/232", - "diff_url": "https://github.com/Technigo/project-news-site/pull/232.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/232.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/232", - "number": 232, - "state": "open", - "locked": false, - "title": "Anndimi project news site", - "user": { - "login": "anndimi", - "id": 80685721, - "node_id": "MDQ6VXNlcjgwNjg1NzIx", - "avatar_url": "https://avatars.githubusercontent.com/u/80685721?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/anndimi", - "html_url": "https://github.com/anndimi", - "followers_url": "https://api.github.com/users/anndimi/followers", - "following_url": "https://api.github.com/users/anndimi/following{/other_user}", - "gists_url": "https://api.github.com/users/anndimi/gists{/gist_id}", - "starred_url": "https://api.github.com/users/anndimi/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/anndimi/subscriptions", - "organizations_url": "https://api.github.com/users/anndimi/orgs", - "repos_url": "https://api.github.com/users/anndimi/repos", - "events_url": "https://api.github.com/users/anndimi/events{/privacy}", - "received_events_url": "https://api.github.com/users/anndimi/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-30T05:37:36Z", - "updated_at": "2021-09-08T09:46:28Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "b49cb1893d2050078cd0e4f21c9f58beb6048194", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/232/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/232/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/232/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/8f843fdf051959d76289fb183023f636a29baef9", - "head": { - "label": "anndimi:anndimi-project-news-site", - "ref": "anndimi-project-news-site", - "sha": "8f843fdf051959d76289fb183023f636a29baef9", - "user": { - "login": "anndimi", - "id": 80685721, - "node_id": "MDQ6VXNlcjgwNjg1NzIx", - "avatar_url": "https://avatars.githubusercontent.com/u/80685721?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/anndimi", - "html_url": "https://github.com/anndimi", - "followers_url": "https://api.github.com/users/anndimi/followers", - "following_url": "https://api.github.com/users/anndimi/following{/other_user}", - "gists_url": "https://api.github.com/users/anndimi/gists{/gist_id}", - "starred_url": "https://api.github.com/users/anndimi/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/anndimi/subscriptions", - "organizations_url": "https://api.github.com/users/anndimi/orgs", - "repos_url": "https://api.github.com/users/anndimi/repos", - "events_url": "https://api.github.com/users/anndimi/events{/privacy}", - "received_events_url": "https://api.github.com/users/anndimi/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399024449, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjQ0NDk=", - "name": "project-news-site", - "full_name": "anndimi/project-news-site", - "private": false, - "owner": { - "login": "anndimi", - "id": 80685721, - "node_id": "MDQ6VXNlcjgwNjg1NzIx", - "avatar_url": "https://avatars.githubusercontent.com/u/80685721?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/anndimi", - "html_url": "https://github.com/anndimi", - "followers_url": "https://api.github.com/users/anndimi/followers", - "following_url": "https://api.github.com/users/anndimi/following{/other_user}", - "gists_url": "https://api.github.com/users/anndimi/gists{/gist_id}", - "starred_url": "https://api.github.com/users/anndimi/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/anndimi/subscriptions", - "organizations_url": "https://api.github.com/users/anndimi/orgs", - "repos_url": "https://api.github.com/users/anndimi/repos", - "events_url": "https://api.github.com/users/anndimi/events{/privacy}", - "received_events_url": "https://api.github.com/users/anndimi/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/anndimi/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/anndimi/project-news-site", - "forks_url": "https://api.github.com/repos/anndimi/project-news-site/forks", - "keys_url": "https://api.github.com/repos/anndimi/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/anndimi/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/anndimi/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/anndimi/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/anndimi/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/anndimi/project-news-site/events", - "assignees_url": "https://api.github.com/repos/anndimi/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/anndimi/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/anndimi/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/anndimi/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/anndimi/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/anndimi/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/anndimi/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/anndimi/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/anndimi/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/anndimi/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/anndimi/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/anndimi/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/anndimi/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/anndimi/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/anndimi/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/anndimi/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/anndimi/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/anndimi/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/anndimi/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/anndimi/project-news-site/merges", - "archive_url": "https://api.github.com/repos/anndimi/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/anndimi/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/anndimi/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/anndimi/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/anndimi/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/anndimi/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/anndimi/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/anndimi/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/anndimi/project-news-site/deployments", - "created_at": "2021-08-23T08:14:22Z", - "updated_at": "2021-08-26T12:57:26Z", - "pushed_at": "2021-08-30T05:35:34Z", - "git_url": "git://github.com/anndimi/project-news-site.git", - "ssh_url": "git@github.com:anndimi/project-news-site.git", - "clone_url": "https://github.com/anndimi/project-news-site.git", - "svn_url": "https://github.com/anndimi/project-news-site", - "homepage": null, - "size": 11429, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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": 1, - "license": null, - "allow_forking": true, - "forks": 0, - "open_issues": 1, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/232" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/232" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/232" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/232/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/232/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/232/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/8f843fdf051959d76289fb183023f636a29baef9" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/231", - "id": 722033338, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDMzMzM4", - "html_url": "https://github.com/Technigo/project-news-site/pull/231", - "diff_url": "https://github.com/Technigo/project-news-site/pull/231.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/231.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/231", - "number": 231, - "state": "open", - "locked": false, - "title": "Week 2 project pull request from Maria Sjögren", - "user": { - "login": "molbimien", - "id": 43146046, - "node_id": "MDQ6VXNlcjQzMTQ2MDQ2", - "avatar_url": "https://avatars.githubusercontent.com/u/43146046?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/molbimien", - "html_url": "https://github.com/molbimien", - "followers_url": "https://api.github.com/users/molbimien/followers", - "following_url": "https://api.github.com/users/molbimien/following{/other_user}", - "gists_url": "https://api.github.com/users/molbimien/gists{/gist_id}", - "starred_url": "https://api.github.com/users/molbimien/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/molbimien/subscriptions", - "organizations_url": "https://api.github.com/users/molbimien/orgs", - "repos_url": "https://api.github.com/users/molbimien/repos", - "events_url": "https://api.github.com/users/molbimien/events{/privacy}", - "received_events_url": "https://api.github.com/users/molbimien/received_events", - "type": "User", - "site_admin": false - }, - "body": "Here's my pull request for this week's project: Build a news site. ", - "created_at": "2021-08-29T23:01:23Z", - "updated_at": "2021-09-01T18:23:22Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "1f9e68cf7738194ce6a1f77bf940bc9001ee4a9b", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/231/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/231/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/231/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/a33044e6d056ab627b6f568da0e7a9ca019f7ebc", - "head": { - "label": "molbimien:master", - "ref": "master", - "sha": "a33044e6d056ab627b6f568da0e7a9ca019f7ebc", - "user": { - "login": "molbimien", - "id": 43146046, - "node_id": "MDQ6VXNlcjQzMTQ2MDQ2", - "avatar_url": "https://avatars.githubusercontent.com/u/43146046?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/molbimien", - "html_url": "https://github.com/molbimien", - "followers_url": "https://api.github.com/users/molbimien/followers", - "following_url": "https://api.github.com/users/molbimien/following{/other_user}", - "gists_url": "https://api.github.com/users/molbimien/gists{/gist_id}", - "starred_url": "https://api.github.com/users/molbimien/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/molbimien/subscriptions", - "organizations_url": "https://api.github.com/users/molbimien/orgs", - "repos_url": "https://api.github.com/users/molbimien/repos", - "events_url": "https://api.github.com/users/molbimien/events{/privacy}", - "received_events_url": "https://api.github.com/users/molbimien/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399024500, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjQ1MDA=", - "name": "project-news-site", - "full_name": "molbimien/project-news-site", - "private": false, - "owner": { - "login": "molbimien", - "id": 43146046, - "node_id": "MDQ6VXNlcjQzMTQ2MDQ2", - "avatar_url": "https://avatars.githubusercontent.com/u/43146046?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/molbimien", - "html_url": "https://github.com/molbimien", - "followers_url": "https://api.github.com/users/molbimien/followers", - "following_url": "https://api.github.com/users/molbimien/following{/other_user}", - "gists_url": "https://api.github.com/users/molbimien/gists{/gist_id}", - "starred_url": "https://api.github.com/users/molbimien/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/molbimien/subscriptions", - "organizations_url": "https://api.github.com/users/molbimien/orgs", - "repos_url": "https://api.github.com/users/molbimien/repos", - "events_url": "https://api.github.com/users/molbimien/events{/privacy}", - "received_events_url": "https://api.github.com/users/molbimien/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/molbimien/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/molbimien/project-news-site", - "forks_url": "https://api.github.com/repos/molbimien/project-news-site/forks", - "keys_url": "https://api.github.com/repos/molbimien/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/molbimien/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/molbimien/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/molbimien/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/molbimien/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/molbimien/project-news-site/events", - "assignees_url": "https://api.github.com/repos/molbimien/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/molbimien/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/molbimien/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/molbimien/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/molbimien/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/molbimien/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/molbimien/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/molbimien/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/molbimien/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/molbimien/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/molbimien/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/molbimien/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/molbimien/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/molbimien/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/molbimien/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/molbimien/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/molbimien/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/molbimien/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/molbimien/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/molbimien/project-news-site/merges", - "archive_url": "https://api.github.com/repos/molbimien/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/molbimien/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/molbimien/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/molbimien/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/molbimien/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/molbimien/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/molbimien/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/molbimien/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/molbimien/project-news-site/deployments", - "created_at": "2021-08-23T08:14:32Z", - "updated_at": "2021-08-30T18:24:58Z", - "pushed_at": "2021-08-30T18:24:55Z", - "git_url": "git://github.com/molbimien/project-news-site.git", - "ssh_url": "git@github.com:molbimien/project-news-site.git", - "clone_url": "https://github.com/molbimien/project-news-site.git", - "svn_url": "https://github.com/molbimien/project-news-site", - "homepage": null, - "size": 781, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/231" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/231" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/231" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/231/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/231/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/231/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/a33044e6d056ab627b6f568da0e7a9ca019f7ebc" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/230", - "id": 722024532, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDI0NTMy", - "html_url": "https://github.com/Technigo/project-news-site/pull/230", - "diff_url": "https://github.com/Technigo/project-news-site/pull/230.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/230.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/230", - "number": 230, - "state": "open", - "locked": false, - "title": "Nina Rivera", - "user": { - "login": "NinaAlejandra", - "id": 81374275, - "node_id": "MDQ6VXNlcjgxMzc0Mjc1", - "avatar_url": "https://avatars.githubusercontent.com/u/81374275?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/NinaAlejandra", - "html_url": "https://github.com/NinaAlejandra", - "followers_url": "https://api.github.com/users/NinaAlejandra/followers", - "following_url": "https://api.github.com/users/NinaAlejandra/following{/other_user}", - "gists_url": "https://api.github.com/users/NinaAlejandra/gists{/gist_id}", - "starred_url": "https://api.github.com/users/NinaAlejandra/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/NinaAlejandra/subscriptions", - "organizations_url": "https://api.github.com/users/NinaAlejandra/orgs", - "repos_url": "https://api.github.com/users/NinaAlejandra/repos", - "events_url": "https://api.github.com/users/NinaAlejandra/events{/privacy}", - "received_events_url": "https://api.github.com/users/NinaAlejandra/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-29T21:53:34Z", - "updated_at": "2021-09-21T18:56:54Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "731e19f2d6d6ac53c386eae860b926acf4eee72a", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/230/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/230/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/230/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/f5f768d9b690cb81dbfda4de0fabf0943b7f256d", - "head": { - "label": "NinaAlejandra:master", - "ref": "master", - "sha": "f5f768d9b690cb81dbfda4de0fabf0943b7f256d", - "user": { - "login": "NinaAlejandra", - "id": 81374275, - "node_id": "MDQ6VXNlcjgxMzc0Mjc1", - "avatar_url": "https://avatars.githubusercontent.com/u/81374275?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/NinaAlejandra", - "html_url": "https://github.com/NinaAlejandra", - "followers_url": "https://api.github.com/users/NinaAlejandra/followers", - "following_url": "https://api.github.com/users/NinaAlejandra/following{/other_user}", - "gists_url": "https://api.github.com/users/NinaAlejandra/gists{/gist_id}", - "starred_url": "https://api.github.com/users/NinaAlejandra/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/NinaAlejandra/subscriptions", - "organizations_url": "https://api.github.com/users/NinaAlejandra/orgs", - "repos_url": "https://api.github.com/users/NinaAlejandra/repos", - "events_url": "https://api.github.com/users/NinaAlejandra/events{/privacy}", - "received_events_url": "https://api.github.com/users/NinaAlejandra/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399625390, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTk2MjUzOTA=", - "name": "project-news-site", - "full_name": "NinaAlejandra/project-news-site", - "private": false, - "owner": { - "login": "NinaAlejandra", - "id": 81374275, - "node_id": "MDQ6VXNlcjgxMzc0Mjc1", - "avatar_url": "https://avatars.githubusercontent.com/u/81374275?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/NinaAlejandra", - "html_url": "https://github.com/NinaAlejandra", - "followers_url": "https://api.github.com/users/NinaAlejandra/followers", - "following_url": "https://api.github.com/users/NinaAlejandra/following{/other_user}", - "gists_url": "https://api.github.com/users/NinaAlejandra/gists{/gist_id}", - "starred_url": "https://api.github.com/users/NinaAlejandra/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/NinaAlejandra/subscriptions", - "organizations_url": "https://api.github.com/users/NinaAlejandra/orgs", - "repos_url": "https://api.github.com/users/NinaAlejandra/repos", - "events_url": "https://api.github.com/users/NinaAlejandra/events{/privacy}", - "received_events_url": "https://api.github.com/users/NinaAlejandra/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/NinaAlejandra/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/NinaAlejandra/project-news-site", - "forks_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/forks", - "keys_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/events", - "assignees_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/merges", - "archive_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/NinaAlejandra/project-news-site/deployments", - "created_at": "2021-08-24T22:55:04Z", - "updated_at": "2021-09-21T18:56:56Z", - "pushed_at": "2021-09-21T18:56:53Z", - "git_url": "git://github.com/NinaAlejandra/project-news-site.git", - "ssh_url": "git@github.com:NinaAlejandra/project-news-site.git", - "clone_url": "https://github.com/NinaAlejandra/project-news-site.git", - "svn_url": "https://github.com/NinaAlejandra/project-news-site", - "homepage": null, - "size": 1794, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/230" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/230" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/230" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/230/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/230/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/230/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/f5f768d9b690cb81dbfda4de0fabf0943b7f256d" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/229", - "id": 722024094, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDI0MDk0", - "html_url": "https://github.com/Technigo/project-news-site/pull/229", - "diff_url": "https://github.com/Technigo/project-news-site/pull/229.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/229.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/229", - "number": 229, - "state": "open", - "locked": false, - "title": "News site", - "user": { - "login": "Ingetora", - "id": 40246091, - "node_id": "MDQ6VXNlcjQwMjQ2MDkx", - "avatar_url": "https://avatars.githubusercontent.com/u/40246091?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Ingetora", - "html_url": "https://github.com/Ingetora", - "followers_url": "https://api.github.com/users/Ingetora/followers", - "following_url": "https://api.github.com/users/Ingetora/following{/other_user}", - "gists_url": "https://api.github.com/users/Ingetora/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Ingetora/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Ingetora/subscriptions", - "organizations_url": "https://api.github.com/users/Ingetora/orgs", - "repos_url": "https://api.github.com/users/Ingetora/repos", - "events_url": "https://api.github.com/users/Ingetora/events{/privacy}", - "received_events_url": "https://api.github.com/users/Ingetora/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-29T21:49:45Z", - "updated_at": "2021-09-02T08:44:50Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "bef91311af56357ffd6352664b993794f4ca6c8f", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/229/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/229/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/229/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/18de362457d899e14b31d3f7740fad2bd29e0017", - "head": { - "label": "Ingetora:master", - "ref": "master", - "sha": "18de362457d899e14b31d3f7740fad2bd29e0017", - "user": { - "login": "Ingetora", - "id": 40246091, - "node_id": "MDQ6VXNlcjQwMjQ2MDkx", - "avatar_url": "https://avatars.githubusercontent.com/u/40246091?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Ingetora", - "html_url": "https://github.com/Ingetora", - "followers_url": "https://api.github.com/users/Ingetora/followers", - "following_url": "https://api.github.com/users/Ingetora/following{/other_user}", - "gists_url": "https://api.github.com/users/Ingetora/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Ingetora/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Ingetora/subscriptions", - "organizations_url": "https://api.github.com/users/Ingetora/orgs", - "repos_url": "https://api.github.com/users/Ingetora/repos", - "events_url": "https://api.github.com/users/Ingetora/events{/privacy}", - "received_events_url": "https://api.github.com/users/Ingetora/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 400508774, - "node_id": "MDEwOlJlcG9zaXRvcnk0MDA1MDg3NzQ=", - "name": "project-news-site", - "full_name": "Ingetora/project-news-site", - "private": false, - "owner": { - "login": "Ingetora", - "id": 40246091, - "node_id": "MDQ6VXNlcjQwMjQ2MDkx", - "avatar_url": "https://avatars.githubusercontent.com/u/40246091?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Ingetora", - "html_url": "https://github.com/Ingetora", - "followers_url": "https://api.github.com/users/Ingetora/followers", - "following_url": "https://api.github.com/users/Ingetora/following{/other_user}", - "gists_url": "https://api.github.com/users/Ingetora/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Ingetora/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Ingetora/subscriptions", - "organizations_url": "https://api.github.com/users/Ingetora/orgs", - "repos_url": "https://api.github.com/users/Ingetora/repos", - "events_url": "https://api.github.com/users/Ingetora/events{/privacy}", - "received_events_url": "https://api.github.com/users/Ingetora/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Ingetora/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Ingetora/project-news-site", - "forks_url": "https://api.github.com/repos/Ingetora/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Ingetora/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Ingetora/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Ingetora/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Ingetora/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Ingetora/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Ingetora/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Ingetora/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Ingetora/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Ingetora/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Ingetora/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Ingetora/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Ingetora/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Ingetora/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Ingetora/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Ingetora/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Ingetora/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Ingetora/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Ingetora/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Ingetora/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Ingetora/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Ingetora/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Ingetora/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Ingetora/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Ingetora/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Ingetora/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Ingetora/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Ingetora/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Ingetora/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Ingetora/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Ingetora/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Ingetora/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Ingetora/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Ingetora/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Ingetora/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Ingetora/project-news-site/deployments", - "created_at": "2021-08-27T12:54:22Z", - "updated_at": "2021-08-29T11:38:50Z", - "pushed_at": "2021-08-29T11:38:48Z", - "git_url": "git://github.com/Ingetora/project-news-site.git", - "ssh_url": "git@github.com:Ingetora/project-news-site.git", - "clone_url": "https://github.com/Ingetora/project-news-site.git", - "svn_url": "https://github.com/Ingetora/project-news-site", - "homepage": null, - "size": 762, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/229" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/229" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/229" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/229/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/229/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/229/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/18de362457d899e14b31d3f7740fad2bd29e0017" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/228", - "id": 722021456, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDIxNDU2", - "html_url": "https://github.com/Technigo/project-news-site/pull/228", - "diff_url": "https://github.com/Technigo/project-news-site/pull/228.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/228.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/228", - "number": 228, - "state": "open", - "locked": false, - "title": "Week 2 - news site - linnéa wilhelmsson ", - "user": { - "login": "Skrosen", - "id": 76884712, - "node_id": "MDQ6VXNlcjc2ODg0NzEy", - "avatar_url": "https://avatars.githubusercontent.com/u/76884712?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Skrosen", - "html_url": "https://github.com/Skrosen", - "followers_url": "https://api.github.com/users/Skrosen/followers", - "following_url": "https://api.github.com/users/Skrosen/following{/other_user}", - "gists_url": "https://api.github.com/users/Skrosen/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Skrosen/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Skrosen/subscriptions", - "organizations_url": "https://api.github.com/users/Skrosen/orgs", - "repos_url": "https://api.github.com/users/Skrosen/repos", - "events_url": "https://api.github.com/users/Skrosen/events{/privacy}", - "received_events_url": "https://api.github.com/users/Skrosen/received_events", - "type": "User", - "site_admin": false - }, - "body": "https://linneawilhelmsson-week2-news-site.netlify.app/", - "created_at": "2021-08-29T21:26:52Z", - "updated_at": "2021-09-09T17:23:05Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "c47c20240f0f0ff46f6659a3d677c333f91e02b4", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/228/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/228/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/228/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/f453db256e0926508409fc0b9fdd52eae8af389a", - "head": { - "label": "Skrosen:master", - "ref": "master", - "sha": "f453db256e0926508409fc0b9fdd52eae8af389a", - "user": { - "login": "Skrosen", - "id": 76884712, - "node_id": "MDQ6VXNlcjc2ODg0NzEy", - "avatar_url": "https://avatars.githubusercontent.com/u/76884712?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Skrosen", - "html_url": "https://github.com/Skrosen", - "followers_url": "https://api.github.com/users/Skrosen/followers", - "following_url": "https://api.github.com/users/Skrosen/following{/other_user}", - "gists_url": "https://api.github.com/users/Skrosen/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Skrosen/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Skrosen/subscriptions", - "organizations_url": "https://api.github.com/users/Skrosen/orgs", - "repos_url": "https://api.github.com/users/Skrosen/repos", - "events_url": "https://api.github.com/users/Skrosen/events{/privacy}", - "received_events_url": "https://api.github.com/users/Skrosen/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399025830, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjU4MzA=", - "name": "project-news-site", - "full_name": "Skrosen/project-news-site", - "private": false, - "owner": { - "login": "Skrosen", - "id": 76884712, - "node_id": "MDQ6VXNlcjc2ODg0NzEy", - "avatar_url": "https://avatars.githubusercontent.com/u/76884712?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Skrosen", - "html_url": "https://github.com/Skrosen", - "followers_url": "https://api.github.com/users/Skrosen/followers", - "following_url": "https://api.github.com/users/Skrosen/following{/other_user}", - "gists_url": "https://api.github.com/users/Skrosen/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Skrosen/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Skrosen/subscriptions", - "organizations_url": "https://api.github.com/users/Skrosen/orgs", - "repos_url": "https://api.github.com/users/Skrosen/repos", - "events_url": "https://api.github.com/users/Skrosen/events{/privacy}", - "received_events_url": "https://api.github.com/users/Skrosen/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Skrosen/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Skrosen/project-news-site", - "forks_url": "https://api.github.com/repos/Skrosen/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Skrosen/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Skrosen/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Skrosen/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Skrosen/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Skrosen/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Skrosen/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Skrosen/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Skrosen/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Skrosen/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Skrosen/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Skrosen/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Skrosen/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Skrosen/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Skrosen/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Skrosen/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Skrosen/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Skrosen/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Skrosen/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Skrosen/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Skrosen/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Skrosen/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Skrosen/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Skrosen/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Skrosen/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Skrosen/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Skrosen/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Skrosen/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Skrosen/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Skrosen/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Skrosen/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Skrosen/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Skrosen/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Skrosen/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Skrosen/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Skrosen/project-news-site/deployments", - "created_at": "2021-08-23T08:19:08Z", - "updated_at": "2021-08-29T20:26:25Z", - "pushed_at": "2021-08-29T20:26:22Z", - "git_url": "git://github.com/Skrosen/project-news-site.git", - "ssh_url": "git@github.com:Skrosen/project-news-site.git", - "clone_url": "https://github.com/Skrosen/project-news-site.git", - "svn_url": "https://github.com/Skrosen/project-news-site", - "homepage": null, - "size": 773, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/228" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/228" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/228" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/228/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/228/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/228/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/f453db256e0926508409fc0b9fdd52eae8af389a" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/227", - "id": 722021382, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDIxMzgy", - "html_url": "https://github.com/Technigo/project-news-site/pull/227", - "diff_url": "https://github.com/Technigo/project-news-site/pull/227.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/227.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/227", - "number": 227, - "state": "open", - "locked": false, - "title": "the news-site", - "user": { - "login": "AschwinSiaila", - "id": 84479671, - "node_id": "MDQ6VXNlcjg0NDc5Njcx", - "avatar_url": "https://avatars.githubusercontent.com/u/84479671?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/AschwinSiaila", - "html_url": "https://github.com/AschwinSiaila", - "followers_url": "https://api.github.com/users/AschwinSiaila/followers", - "following_url": "https://api.github.com/users/AschwinSiaila/following{/other_user}", - "gists_url": "https://api.github.com/users/AschwinSiaila/gists{/gist_id}", - "starred_url": "https://api.github.com/users/AschwinSiaila/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/AschwinSiaila/subscriptions", - "organizations_url": "https://api.github.com/users/AschwinSiaila/orgs", - "repos_url": "https://api.github.com/users/AschwinSiaila/repos", - "events_url": "https://api.github.com/users/AschwinSiaila/events{/privacy}", - "received_events_url": "https://api.github.com/users/AschwinSiaila/received_events", - "type": "User", - "site_admin": false - }, - "body": "Netlify can not find my page, after I deploy my code from github. I tried it a couple of times, but I do not know how? About the coding I had troubles with the header, I think I made it difficult for me to rearrange the elements in my header, because I created my own logo. I missed the last class on friday because I was in a flight to the other side of the world and for my feeling i missed a lot. Now in this project this were the struggles but I learned a lot of coding including the games I noticed that when I was typing the answers that I automatically pushed ctrl S. ", - "created_at": "2021-08-29T21:26:17Z", - "updated_at": "2021-09-01T20:29:48Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "8dbc370acaf3b1d9c820560dc89e5dd145843357", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/227/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/227/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/227/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/7f25c8567c12cc29a01698f166f481997a7ed836", - "head": { - "label": "AschwinSiaila:master", - "ref": "master", - "sha": "7f25c8567c12cc29a01698f166f481997a7ed836", - "user": { - "login": "AschwinSiaila", - "id": 84479671, - "node_id": "MDQ6VXNlcjg0NDc5Njcx", - "avatar_url": "https://avatars.githubusercontent.com/u/84479671?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/AschwinSiaila", - "html_url": "https://github.com/AschwinSiaila", - "followers_url": "https://api.github.com/users/AschwinSiaila/followers", - "following_url": "https://api.github.com/users/AschwinSiaila/following{/other_user}", - "gists_url": "https://api.github.com/users/AschwinSiaila/gists{/gist_id}", - "starred_url": "https://api.github.com/users/AschwinSiaila/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/AschwinSiaila/subscriptions", - "organizations_url": "https://api.github.com/users/AschwinSiaila/orgs", - "repos_url": "https://api.github.com/users/AschwinSiaila/repos", - "events_url": "https://api.github.com/users/AschwinSiaila/events{/privacy}", - "received_events_url": "https://api.github.com/users/AschwinSiaila/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399093166, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwOTMxNjY=", - "name": "project-news-site", - "full_name": "AschwinSiaila/project-news-site", - "private": false, - "owner": { - "login": "AschwinSiaila", - "id": 84479671, - "node_id": "MDQ6VXNlcjg0NDc5Njcx", - "avatar_url": "https://avatars.githubusercontent.com/u/84479671?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/AschwinSiaila", - "html_url": "https://github.com/AschwinSiaila", - "followers_url": "https://api.github.com/users/AschwinSiaila/followers", - "following_url": "https://api.github.com/users/AschwinSiaila/following{/other_user}", - "gists_url": "https://api.github.com/users/AschwinSiaila/gists{/gist_id}", - "starred_url": "https://api.github.com/users/AschwinSiaila/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/AschwinSiaila/subscriptions", - "organizations_url": "https://api.github.com/users/AschwinSiaila/orgs", - "repos_url": "https://api.github.com/users/AschwinSiaila/repos", - "events_url": "https://api.github.com/users/AschwinSiaila/events{/privacy}", - "received_events_url": "https://api.github.com/users/AschwinSiaila/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/AschwinSiaila/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/AschwinSiaila/project-news-site", - "forks_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/forks", - "keys_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/events", - "assignees_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/merges", - "archive_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/AschwinSiaila/project-news-site/deployments", - "created_at": "2021-08-23T12:19:52Z", - "updated_at": "2021-09-01T07:55:20Z", - "pushed_at": "2021-09-01T07:55:17Z", - "git_url": "git://github.com/AschwinSiaila/project-news-site.git", - "ssh_url": "git@github.com:AschwinSiaila/project-news-site.git", - "clone_url": "https://github.com/AschwinSiaila/project-news-site.git", - "svn_url": "https://github.com/AschwinSiaila/project-news-site", - "homepage": null, - "size": 778, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/227" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/227" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/227" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/227/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/227/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/227/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/7f25c8567c12cc29a01698f166f481997a7ed836" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/226", - "id": 722011409, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDExNDA5", - "html_url": "https://github.com/Technigo/project-news-site/pull/226", - "diff_url": "https://github.com/Technigo/project-news-site/pull/226.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/226.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/226", - "number": 226, - "state": "open", - "locked": false, - "title": "Daniel Vestin project-news-site", - "user": { - "login": "dandeloid", - "id": 82587220, - "node_id": "MDQ6VXNlcjgyNTg3MjIw", - "avatar_url": "https://avatars.githubusercontent.com/u/82587220?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/dandeloid", - "html_url": "https://github.com/dandeloid", - "followers_url": "https://api.github.com/users/dandeloid/followers", - "following_url": "https://api.github.com/users/dandeloid/following{/other_user}", - "gists_url": "https://api.github.com/users/dandeloid/gists{/gist_id}", - "starred_url": "https://api.github.com/users/dandeloid/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/dandeloid/subscriptions", - "organizations_url": "https://api.github.com/users/dandeloid/orgs", - "repos_url": "https://api.github.com/users/dandeloid/repos", - "events_url": "https://api.github.com/users/dandeloid/events{/privacy}", - "received_events_url": "https://api.github.com/users/dandeloid/received_events", - "type": "User", - "site_admin": false - }, - "body": "project-news-site", - "created_at": "2021-08-29T20:06:35Z", - "updated_at": "2021-08-30T22:51:32Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "21d50793f0168bf484752c6a908c14e5cee94fe4", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/226/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/226/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/226/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/ed783ce94f31cc8000c0bb7de89a384d871d9904", - "head": { - "label": "dandeloid:master", - "ref": "master", - "sha": "ed783ce94f31cc8000c0bb7de89a384d871d9904", - "user": { - "login": "dandeloid", - "id": 82587220, - "node_id": "MDQ6VXNlcjgyNTg3MjIw", - "avatar_url": "https://avatars.githubusercontent.com/u/82587220?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/dandeloid", - "html_url": "https://github.com/dandeloid", - "followers_url": "https://api.github.com/users/dandeloid/followers", - "following_url": "https://api.github.com/users/dandeloid/following{/other_user}", - "gists_url": "https://api.github.com/users/dandeloid/gists{/gist_id}", - "starred_url": "https://api.github.com/users/dandeloid/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/dandeloid/subscriptions", - "organizations_url": "https://api.github.com/users/dandeloid/orgs", - "repos_url": "https://api.github.com/users/dandeloid/repos", - "events_url": "https://api.github.com/users/dandeloid/events{/privacy}", - "received_events_url": "https://api.github.com/users/dandeloid/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398242686, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTgyNDI2ODY=", - "name": "project-news-site", - "full_name": "dandeloid/project-news-site", - "private": false, - "owner": { - "login": "dandeloid", - "id": 82587220, - "node_id": "MDQ6VXNlcjgyNTg3MjIw", - "avatar_url": "https://avatars.githubusercontent.com/u/82587220?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/dandeloid", - "html_url": "https://github.com/dandeloid", - "followers_url": "https://api.github.com/users/dandeloid/followers", - "following_url": "https://api.github.com/users/dandeloid/following{/other_user}", - "gists_url": "https://api.github.com/users/dandeloid/gists{/gist_id}", - "starred_url": "https://api.github.com/users/dandeloid/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/dandeloid/subscriptions", - "organizations_url": "https://api.github.com/users/dandeloid/orgs", - "repos_url": "https://api.github.com/users/dandeloid/repos", - "events_url": "https://api.github.com/users/dandeloid/events{/privacy}", - "received_events_url": "https://api.github.com/users/dandeloid/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/dandeloid/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/dandeloid/project-news-site", - "forks_url": "https://api.github.com/repos/dandeloid/project-news-site/forks", - "keys_url": "https://api.github.com/repos/dandeloid/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/dandeloid/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/dandeloid/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/dandeloid/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/dandeloid/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/dandeloid/project-news-site/events", - "assignees_url": "https://api.github.com/repos/dandeloid/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/dandeloid/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/dandeloid/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/dandeloid/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/dandeloid/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/dandeloid/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/dandeloid/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/dandeloid/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/dandeloid/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/dandeloid/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/dandeloid/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/dandeloid/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/dandeloid/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/dandeloid/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/dandeloid/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/dandeloid/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/dandeloid/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/dandeloid/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/dandeloid/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/dandeloid/project-news-site/merges", - "archive_url": "https://api.github.com/repos/dandeloid/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/dandeloid/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/dandeloid/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/dandeloid/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/dandeloid/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/dandeloid/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/dandeloid/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/dandeloid/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/dandeloid/project-news-site/deployments", - "created_at": "2021-08-20T10:42:35Z", - "updated_at": "2021-08-29T19:50:48Z", - "pushed_at": "2021-08-29T19:50:45Z", - "git_url": "git://github.com/dandeloid/project-news-site.git", - "ssh_url": "git@github.com:dandeloid/project-news-site.git", - "clone_url": "https://github.com/dandeloid/project-news-site.git", - "svn_url": "https://github.com/dandeloid/project-news-site", - "homepage": null, - "size": 842, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 1, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/226" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/226" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/226" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/226/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/226/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/226/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/ed783ce94f31cc8000c0bb7de89a384d871d9904" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/225", - "id": 722011119, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDExMTE5", - "html_url": "https://github.com/Technigo/project-news-site/pull/225", - "diff_url": "https://github.com/Technigo/project-news-site/pull/225.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/225.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/225", - "number": 225, - "state": "open", - "locked": false, - "title": "New Site Project", - "user": { - "login": "Fatima-Gamero-Romero", - "id": 84101608, - "node_id": "MDQ6VXNlcjg0MTAxNjA4", - "avatar_url": "https://avatars.githubusercontent.com/u/84101608?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Fatima-Gamero-Romero", - "html_url": "https://github.com/Fatima-Gamero-Romero", - "followers_url": "https://api.github.com/users/Fatima-Gamero-Romero/followers", - "following_url": "https://api.github.com/users/Fatima-Gamero-Romero/following{/other_user}", - "gists_url": "https://api.github.com/users/Fatima-Gamero-Romero/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Fatima-Gamero-Romero/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Fatima-Gamero-Romero/subscriptions", - "organizations_url": "https://api.github.com/users/Fatima-Gamero-Romero/orgs", - "repos_url": "https://api.github.com/users/Fatima-Gamero-Romero/repos", - "events_url": "https://api.github.com/users/Fatima-Gamero-Romero/events{/privacy}", - "received_events_url": "https://api.github.com/users/Fatima-Gamero-Romero/received_events", - "type": "User", - "site_admin": false - }, - "body": "Fatima Gamero Romero", - "created_at": "2021-08-29T20:04:30Z", - "updated_at": "2021-09-20T09:58:20Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "3883af9b49f8f2caf4b798cf140c1ff290d59136", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/225/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/225/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/225/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/1d9fae78e9c4a336dc767ae882a0836e53baac53", - "head": { - "label": "Fatima-Gamero-Romero:master", - "ref": "master", - "sha": "1d9fae78e9c4a336dc767ae882a0836e53baac53", - "user": { - "login": "Fatima-Gamero-Romero", - "id": 84101608, - "node_id": "MDQ6VXNlcjg0MTAxNjA4", - "avatar_url": "https://avatars.githubusercontent.com/u/84101608?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Fatima-Gamero-Romero", - "html_url": "https://github.com/Fatima-Gamero-Romero", - "followers_url": "https://api.github.com/users/Fatima-Gamero-Romero/followers", - "following_url": "https://api.github.com/users/Fatima-Gamero-Romero/following{/other_user}", - "gists_url": "https://api.github.com/users/Fatima-Gamero-Romero/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Fatima-Gamero-Romero/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Fatima-Gamero-Romero/subscriptions", - "organizations_url": "https://api.github.com/users/Fatima-Gamero-Romero/orgs", - "repos_url": "https://api.github.com/users/Fatima-Gamero-Romero/repos", - "events_url": "https://api.github.com/users/Fatima-Gamero-Romero/events{/privacy}", - "received_events_url": "https://api.github.com/users/Fatima-Gamero-Romero/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399865770, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTk4NjU3NzA=", - "name": "project-news-site", - "full_name": "Fatima-Gamero-Romero/project-news-site", - "private": false, - "owner": { - "login": "Fatima-Gamero-Romero", - "id": 84101608, - "node_id": "MDQ6VXNlcjg0MTAxNjA4", - "avatar_url": "https://avatars.githubusercontent.com/u/84101608?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Fatima-Gamero-Romero", - "html_url": "https://github.com/Fatima-Gamero-Romero", - "followers_url": "https://api.github.com/users/Fatima-Gamero-Romero/followers", - "following_url": "https://api.github.com/users/Fatima-Gamero-Romero/following{/other_user}", - "gists_url": "https://api.github.com/users/Fatima-Gamero-Romero/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Fatima-Gamero-Romero/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Fatima-Gamero-Romero/subscriptions", - "organizations_url": "https://api.github.com/users/Fatima-Gamero-Romero/orgs", - "repos_url": "https://api.github.com/users/Fatima-Gamero-Romero/repos", - "events_url": "https://api.github.com/users/Fatima-Gamero-Romero/events{/privacy}", - "received_events_url": "https://api.github.com/users/Fatima-Gamero-Romero/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Fatima-Gamero-Romero/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site", - "forks_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Fatima-Gamero-Romero/project-news-site/deployments", - "created_at": "2021-08-25T15:19:28Z", - "updated_at": "2021-09-20T09:58:21Z", - "pushed_at": "2021-09-20T09:58:19Z", - "git_url": "git://github.com/Fatima-Gamero-Romero/project-news-site.git", - "ssh_url": "git@github.com:Fatima-Gamero-Romero/project-news-site.git", - "clone_url": "https://github.com/Fatima-Gamero-Romero/project-news-site.git", - "svn_url": "https://github.com/Fatima-Gamero-Romero/project-news-site", - "homepage": null, - "size": 2942, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/225" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/225" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/225" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/225/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/225/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/225/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/1d9fae78e9c4a336dc767ae882a0836e53baac53" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/224", - "id": 722011103, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDExMTAz", - "html_url": "https://github.com/Technigo/project-news-site/pull/224", - "diff_url": "https://github.com/Technigo/project-news-site/pull/224.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/224.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/224", - "number": 224, - "state": "open", - "locked": false, - "title": "Sarah Mottram project news site", - "user": { - "login": "Smelbows", - "id": 67631502, - "node_id": "MDQ6VXNlcjY3NjMxNTAy", - "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Smelbows", - "html_url": "https://github.com/Smelbows", - "followers_url": "https://api.github.com/users/Smelbows/followers", - "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", - "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", - "organizations_url": "https://api.github.com/users/Smelbows/orgs", - "repos_url": "https://api.github.com/users/Smelbows/repos", - "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", - "received_events_url": "https://api.github.com/users/Smelbows/received_events", - "type": "User", - "site_admin": false - }, - "body": "I wanted to try out both grid and flex box as I'd never used either, but I tried to keep the code from getting too complex as it is all quite new. I focused on structuring the code correctly and experimented with the media, grid, flexbox and hover concepts. I would have liked to do a bit more work getting the grid 'cards' to be the same size regardless of their content (I tried a few things and it caused me issues elsewhere). I'd also like to look at some ways of creating a drop down nav bar for the mobile view.", - "created_at": "2021-08-29T20:04:25Z", - "updated_at": "2021-08-31T11:41:34Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "e8a6e4442215c4b75acea0db822e30ffe08e7f43", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/224/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/224/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/224/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/7110a14a3f5f7bffd00fe9498a322dd10a5767b8", - "head": { - "label": "Smelbows:master", - "ref": "master", - "sha": "7110a14a3f5f7bffd00fe9498a322dd10a5767b8", - "user": { - "login": "Smelbows", - "id": 67631502, - "node_id": "MDQ6VXNlcjY3NjMxNTAy", - "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Smelbows", - "html_url": "https://github.com/Smelbows", - "followers_url": "https://api.github.com/users/Smelbows/followers", - "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", - "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", - "organizations_url": "https://api.github.com/users/Smelbows/orgs", - "repos_url": "https://api.github.com/users/Smelbows/repos", - "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", - "received_events_url": "https://api.github.com/users/Smelbows/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399080438, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwODA0Mzg=", - "name": "project-news-site", - "full_name": "Smelbows/project-news-site", - "private": false, - "owner": { - "login": "Smelbows", - "id": 67631502, - "node_id": "MDQ6VXNlcjY3NjMxNTAy", - "avatar_url": "https://avatars.githubusercontent.com/u/67631502?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Smelbows", - "html_url": "https://github.com/Smelbows", - "followers_url": "https://api.github.com/users/Smelbows/followers", - "following_url": "https://api.github.com/users/Smelbows/following{/other_user}", - "gists_url": "https://api.github.com/users/Smelbows/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Smelbows/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Smelbows/subscriptions", - "organizations_url": "https://api.github.com/users/Smelbows/orgs", - "repos_url": "https://api.github.com/users/Smelbows/repos", - "events_url": "https://api.github.com/users/Smelbows/events{/privacy}", - "received_events_url": "https://api.github.com/users/Smelbows/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Smelbows/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Smelbows/project-news-site", - "forks_url": "https://api.github.com/repos/Smelbows/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Smelbows/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Smelbows/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Smelbows/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Smelbows/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Smelbows/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Smelbows/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Smelbows/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Smelbows/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Smelbows/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Smelbows/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Smelbows/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Smelbows/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Smelbows/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Smelbows/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Smelbows/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Smelbows/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Smelbows/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Smelbows/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Smelbows/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Smelbows/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Smelbows/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Smelbows/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Smelbows/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Smelbows/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Smelbows/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Smelbows/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Smelbows/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Smelbows/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Smelbows/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Smelbows/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Smelbows/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Smelbows/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Smelbows/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Smelbows/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Smelbows/project-news-site/deployments", - "created_at": "2021-08-23T11:40:28Z", - "updated_at": "2021-08-27T07:17:52Z", - "pushed_at": "2021-08-27T07:17:50Z", - "git_url": "git://github.com/Smelbows/project-news-site.git", - "ssh_url": "git@github.com:Smelbows/project-news-site.git", - "clone_url": "https://github.com/Smelbows/project-news-site.git", - "svn_url": "https://github.com/Smelbows/project-news-site", - "homepage": null, - "size": 842, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/224" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/224" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/224" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/224/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/224/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/224/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/7110a14a3f5f7bffd00fe9498a322dd10a5767b8" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/223", - "id": 722002017, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIyMDAyMDE3", - "html_url": "https://github.com/Technigo/project-news-site/pull/223", - "diff_url": "https://github.com/Technigo/project-news-site/pull/223.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/223.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/223", - "number": 223, - "state": "open", - "locked": false, - "title": "Hedvig Mejstedt week 2", - "user": { - "login": "HedvigM", - "id": 72759122, - "node_id": "MDQ6VXNlcjcyNzU5MTIy", - "avatar_url": "https://avatars.githubusercontent.com/u/72759122?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/HedvigM", - "html_url": "https://github.com/HedvigM", - "followers_url": "https://api.github.com/users/HedvigM/followers", - "following_url": "https://api.github.com/users/HedvigM/following{/other_user}", - "gists_url": "https://api.github.com/users/HedvigM/gists{/gist_id}", - "starred_url": "https://api.github.com/users/HedvigM/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/HedvigM/subscriptions", - "organizations_url": "https://api.github.com/users/HedvigM/orgs", - "repos_url": "https://api.github.com/users/HedvigM/repos", - "events_url": "https://api.github.com/users/HedvigM/events{/privacy}", - "received_events_url": "https://api.github.com/users/HedvigM/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-29T18:55:58Z", - "updated_at": "2021-09-24T19:48:14Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "5fed5bfacbaaf7fe83bad4be5177e2fe37dbbc9d", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/223/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/223/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/223/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/d7c2ee7d0bfd6ff23c58367de7e7c6bb0d380523", - "head": { - "label": "HedvigM:master", - "ref": "master", - "sha": "d7c2ee7d0bfd6ff23c58367de7e7c6bb0d380523", - "user": { - "login": "HedvigM", - "id": 72759122, - "node_id": "MDQ6VXNlcjcyNzU5MTIy", - "avatar_url": "https://avatars.githubusercontent.com/u/72759122?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/HedvigM", - "html_url": "https://github.com/HedvigM", - "followers_url": "https://api.github.com/users/HedvigM/followers", - "following_url": "https://api.github.com/users/HedvigM/following{/other_user}", - "gists_url": "https://api.github.com/users/HedvigM/gists{/gist_id}", - "starred_url": "https://api.github.com/users/HedvigM/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/HedvigM/subscriptions", - "organizations_url": "https://api.github.com/users/HedvigM/orgs", - "repos_url": "https://api.github.com/users/HedvigM/repos", - "events_url": "https://api.github.com/users/HedvigM/events{/privacy}", - "received_events_url": "https://api.github.com/users/HedvigM/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399065741, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwNjU3NDE=", - "name": "project-news-site", - "full_name": "HedvigM/project-news-site", - "private": false, - "owner": { - "login": "HedvigM", - "id": 72759122, - "node_id": "MDQ6VXNlcjcyNzU5MTIy", - "avatar_url": "https://avatars.githubusercontent.com/u/72759122?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/HedvigM", - "html_url": "https://github.com/HedvigM", - "followers_url": "https://api.github.com/users/HedvigM/followers", - "following_url": "https://api.github.com/users/HedvigM/following{/other_user}", - "gists_url": "https://api.github.com/users/HedvigM/gists{/gist_id}", - "starred_url": "https://api.github.com/users/HedvigM/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/HedvigM/subscriptions", - "organizations_url": "https://api.github.com/users/HedvigM/orgs", - "repos_url": "https://api.github.com/users/HedvigM/repos", - "events_url": "https://api.github.com/users/HedvigM/events{/privacy}", - "received_events_url": "https://api.github.com/users/HedvigM/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/HedvigM/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/HedvigM/project-news-site", - "forks_url": "https://api.github.com/repos/HedvigM/project-news-site/forks", - "keys_url": "https://api.github.com/repos/HedvigM/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/HedvigM/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/HedvigM/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/HedvigM/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/HedvigM/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/HedvigM/project-news-site/events", - "assignees_url": "https://api.github.com/repos/HedvigM/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/HedvigM/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/HedvigM/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/HedvigM/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/HedvigM/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/HedvigM/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/HedvigM/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/HedvigM/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/HedvigM/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/HedvigM/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/HedvigM/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/HedvigM/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/HedvigM/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/HedvigM/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/HedvigM/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/HedvigM/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/HedvigM/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/HedvigM/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/HedvigM/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/HedvigM/project-news-site/merges", - "archive_url": "https://api.github.com/repos/HedvigM/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/HedvigM/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/HedvigM/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/HedvigM/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/HedvigM/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/HedvigM/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/HedvigM/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/HedvigM/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/HedvigM/project-news-site/deployments", - "created_at": "2021-08-23T10:45:39Z", - "updated_at": "2021-09-24T19:48:15Z", - "pushed_at": "2021-09-24T19:48:12Z", - "git_url": "git://github.com/HedvigM/project-news-site.git", - "ssh_url": "git@github.com:HedvigM/project-news-site.git", - "clone_url": "https://github.com/HedvigM/project-news-site.git", - "svn_url": "https://github.com/HedvigM/project-news-site", - "homepage": null, - "size": 1045, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/223" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/223" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/223" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/223/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/223/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/223/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/d7c2ee7d0bfd6ff23c58367de7e7c6bb0d380523" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/222", - "id": 721988698, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTg4Njk4", - "html_url": "https://github.com/Technigo/project-news-site/pull/222", - "diff_url": "https://github.com/Technigo/project-news-site/pull/222.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/222.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/222", - "number": 222, - "state": "open", - "locked": false, - "title": "Amanda Tilly Week 2 News Site", - "user": { - "login": "amandatilly", - "id": 54897557, - "node_id": "MDQ6VXNlcjU0ODk3NTU3", - "avatar_url": "https://avatars.githubusercontent.com/u/54897557?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/amandatilly", - "html_url": "https://github.com/amandatilly", - "followers_url": "https://api.github.com/users/amandatilly/followers", - "following_url": "https://api.github.com/users/amandatilly/following{/other_user}", - "gists_url": "https://api.github.com/users/amandatilly/gists{/gist_id}", - "starred_url": "https://api.github.com/users/amandatilly/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/amandatilly/subscriptions", - "organizations_url": "https://api.github.com/users/amandatilly/orgs", - "repos_url": "https://api.github.com/users/amandatilly/repos", - "events_url": "https://api.github.com/users/amandatilly/events{/privacy}", - "received_events_url": "https://api.github.com/users/amandatilly/received_events", - "type": "User", - "site_admin": false - }, - "body": "https://confident-liskov-7a9cf4.netlify.app/\r\n\r\nI am super happy with the final result, I am proud that I was able to make it responsive and that I figured out how to use grid. I feel extra proud of my header and box shadows!\r\n\r\nI struggled with a lot of the styling and media queries initially but as I kept figuring things out my confidence grew larger and I feel that I have learned SO much this week. I had no problems with terminal, github or netlify and I am starting to feel more comfortable using them all now.", - "created_at": "2021-08-29T17:19:09Z", - "updated_at": "2021-08-30T14:39:44Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "b2d662139d30efd96413727efd02875a5a0ae4fd", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/222/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/222/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/222/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/fcc4cfe3b8460b454d3f5e1819d4ab9e026b67ce", - "head": { - "label": "amandatilly:master", - "ref": "master", - "sha": "fcc4cfe3b8460b454d3f5e1819d4ab9e026b67ce", - "user": { - "login": "amandatilly", - "id": 54897557, - "node_id": "MDQ6VXNlcjU0ODk3NTU3", - "avatar_url": "https://avatars.githubusercontent.com/u/54897557?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/amandatilly", - "html_url": "https://github.com/amandatilly", - "followers_url": "https://api.github.com/users/amandatilly/followers", - "following_url": "https://api.github.com/users/amandatilly/following{/other_user}", - "gists_url": "https://api.github.com/users/amandatilly/gists{/gist_id}", - "starred_url": "https://api.github.com/users/amandatilly/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/amandatilly/subscriptions", - "organizations_url": "https://api.github.com/users/amandatilly/orgs", - "repos_url": "https://api.github.com/users/amandatilly/repos", - "events_url": "https://api.github.com/users/amandatilly/events{/privacy}", - "received_events_url": "https://api.github.com/users/amandatilly/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399445253, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTk0NDUyNTM=", - "name": "project-news-site", - "full_name": "amandatilly/project-news-site", - "private": false, - "owner": { - "login": "amandatilly", - "id": 54897557, - "node_id": "MDQ6VXNlcjU0ODk3NTU3", - "avatar_url": "https://avatars.githubusercontent.com/u/54897557?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/amandatilly", - "html_url": "https://github.com/amandatilly", - "followers_url": "https://api.github.com/users/amandatilly/followers", - "following_url": "https://api.github.com/users/amandatilly/following{/other_user}", - "gists_url": "https://api.github.com/users/amandatilly/gists{/gist_id}", - "starred_url": "https://api.github.com/users/amandatilly/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/amandatilly/subscriptions", - "organizations_url": "https://api.github.com/users/amandatilly/orgs", - "repos_url": "https://api.github.com/users/amandatilly/repos", - "events_url": "https://api.github.com/users/amandatilly/events{/privacy}", - "received_events_url": "https://api.github.com/users/amandatilly/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/amandatilly/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/amandatilly/project-news-site", - "forks_url": "https://api.github.com/repos/amandatilly/project-news-site/forks", - "keys_url": "https://api.github.com/repos/amandatilly/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/amandatilly/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/amandatilly/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/amandatilly/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/amandatilly/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/amandatilly/project-news-site/events", - "assignees_url": "https://api.github.com/repos/amandatilly/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/amandatilly/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/amandatilly/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/amandatilly/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/amandatilly/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/amandatilly/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/amandatilly/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/amandatilly/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/amandatilly/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/amandatilly/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/amandatilly/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/amandatilly/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/amandatilly/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/amandatilly/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/amandatilly/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/amandatilly/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/amandatilly/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/amandatilly/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/amandatilly/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/amandatilly/project-news-site/merges", - "archive_url": "https://api.github.com/repos/amandatilly/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/amandatilly/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/amandatilly/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/amandatilly/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/amandatilly/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/amandatilly/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/amandatilly/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/amandatilly/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/amandatilly/project-news-site/deployments", - "created_at": "2021-08-24T11:49:02Z", - "updated_at": "2021-08-29T17:16:10Z", - "pushed_at": "2021-08-29T17:16:03Z", - "git_url": "git://github.com/amandatilly/project-news-site.git", - "ssh_url": "git@github.com:amandatilly/project-news-site.git", - "clone_url": "https://github.com/amandatilly/project-news-site.git", - "svn_url": "https://github.com/amandatilly/project-news-site", - "homepage": null, - "size": 26547, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/222" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/222" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/222" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/222/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/222/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/222/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/fcc4cfe3b8460b454d3f5e1819d4ab9e026b67ce" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/220", - "id": 721977837, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTc3ODM3", - "html_url": "https://github.com/Technigo/project-news-site/pull/220", - "diff_url": "https://github.com/Technigo/project-news-site/pull/220.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/220.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/220", - "number": 220, - "state": "open", - "locked": false, - "title": "Newsletter-project-techingo", - "user": { - "login": "Groovedharry", - "id": 83465217, - "node_id": "MDQ6VXNlcjgzNDY1MjE3", - "avatar_url": "https://avatars.githubusercontent.com/u/83465217?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Groovedharry", - "html_url": "https://github.com/Groovedharry", - "followers_url": "https://api.github.com/users/Groovedharry/followers", - "following_url": "https://api.github.com/users/Groovedharry/following{/other_user}", - "gists_url": "https://api.github.com/users/Groovedharry/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Groovedharry/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Groovedharry/subscriptions", - "organizations_url": "https://api.github.com/users/Groovedharry/orgs", - "repos_url": "https://api.github.com/users/Groovedharry/repos", - "events_url": "https://api.github.com/users/Groovedharry/events{/privacy}", - "received_events_url": "https://api.github.com/users/Groovedharry/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-29T16:07:17Z", - "updated_at": "2021-08-31T17:35:21Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "be71350840d56936e018773ffd7f52edb5801b75", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/220/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/220/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/220/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/62319c6743313fb9cb867ea00a83e6f4bb75522c", - "head": { - "label": "Groovedharry:master", - "ref": "master", - "sha": "62319c6743313fb9cb867ea00a83e6f4bb75522c", - "user": { - "login": "Groovedharry", - "id": 83465217, - "node_id": "MDQ6VXNlcjgzNDY1MjE3", - "avatar_url": "https://avatars.githubusercontent.com/u/83465217?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Groovedharry", - "html_url": "https://github.com/Groovedharry", - "followers_url": "https://api.github.com/users/Groovedharry/followers", - "following_url": "https://api.github.com/users/Groovedharry/following{/other_user}", - "gists_url": "https://api.github.com/users/Groovedharry/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Groovedharry/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Groovedharry/subscriptions", - "organizations_url": "https://api.github.com/users/Groovedharry/orgs", - "repos_url": "https://api.github.com/users/Groovedharry/repos", - "events_url": "https://api.github.com/users/Groovedharry/events{/privacy}", - "received_events_url": "https://api.github.com/users/Groovedharry/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 400228307, - "node_id": "MDEwOlJlcG9zaXRvcnk0MDAyMjgzMDc=", - "name": "project-news-site", - "full_name": "Groovedharry/project-news-site", - "private": false, - "owner": { - "login": "Groovedharry", - "id": 83465217, - "node_id": "MDQ6VXNlcjgzNDY1MjE3", - "avatar_url": "https://avatars.githubusercontent.com/u/83465217?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Groovedharry", - "html_url": "https://github.com/Groovedharry", - "followers_url": "https://api.github.com/users/Groovedharry/followers", - "following_url": "https://api.github.com/users/Groovedharry/following{/other_user}", - "gists_url": "https://api.github.com/users/Groovedharry/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Groovedharry/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Groovedharry/subscriptions", - "organizations_url": "https://api.github.com/users/Groovedharry/orgs", - "repos_url": "https://api.github.com/users/Groovedharry/repos", - "events_url": "https://api.github.com/users/Groovedharry/events{/privacy}", - "received_events_url": "https://api.github.com/users/Groovedharry/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Groovedharry/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Groovedharry/project-news-site", - "forks_url": "https://api.github.com/repos/Groovedharry/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Groovedharry/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Groovedharry/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Groovedharry/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Groovedharry/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Groovedharry/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Groovedharry/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Groovedharry/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Groovedharry/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Groovedharry/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Groovedharry/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Groovedharry/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Groovedharry/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Groovedharry/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Groovedharry/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Groovedharry/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Groovedharry/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Groovedharry/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Groovedharry/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Groovedharry/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Groovedharry/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Groovedharry/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Groovedharry/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Groovedharry/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Groovedharry/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Groovedharry/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Groovedharry/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Groovedharry/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Groovedharry/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Groovedharry/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Groovedharry/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Groovedharry/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Groovedharry/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Groovedharry/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Groovedharry/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Groovedharry/project-news-site/deployments", - "created_at": "2021-08-26T16:02:52Z", - "updated_at": "2021-08-29T16:03:43Z", - "pushed_at": "2021-08-29T16:03:41Z", - "git_url": "git://github.com/Groovedharry/project-news-site.git", - "ssh_url": "git@github.com:Groovedharry/project-news-site.git", - "clone_url": "https://github.com/Groovedharry/project-news-site.git", - "svn_url": "https://github.com/Groovedharry/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/220" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/220" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/220" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/220/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/220/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/220/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/62319c6743313fb9cb867ea00a83e6f4bb75522c" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/219", - "id": 721977231, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTc3MjMx", - "html_url": "https://github.com/Technigo/project-news-site/pull/219", - "diff_url": "https://github.com/Technigo/project-news-site/pull/219.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/219.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/219", - "number": 219, - "state": "open", - "locked": false, - "title": "Emelie project-news-site ", - "user": { - "login": "waliem", - "id": 84201089, - "node_id": "MDQ6VXNlcjg0MjAxMDg5", - "avatar_url": "https://avatars.githubusercontent.com/u/84201089?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/waliem", - "html_url": "https://github.com/waliem", - "followers_url": "https://api.github.com/users/waliem/followers", - "following_url": "https://api.github.com/users/waliem/following{/other_user}", - "gists_url": "https://api.github.com/users/waliem/gists{/gist_id}", - "starred_url": "https://api.github.com/users/waliem/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/waliem/subscriptions", - "organizations_url": "https://api.github.com/users/waliem/orgs", - "repos_url": "https://api.github.com/users/waliem/repos", - "events_url": "https://api.github.com/users/waliem/events{/privacy}", - "received_events_url": "https://api.github.com/users/waliem/received_events", - "type": "User", - "site_admin": false - }, - "body": "Link to deployed version on netlify: https://waliem-project-news-site.netlify.app\r\n\r\nProud of manage to create a grid layout that worked with the responsiveness and aligning everything nicely. \r\n\r\nstruggled with the top news section quite a lot. and to figure out how to align the items inside of the containers without messing up the body. ", - "created_at": "2021-08-29T16:03:44Z", - "updated_at": "2021-08-31T07:34:15Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "2aff41d4f4fdc6e558d26fbde8296c5a035fac2d", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/219/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/219/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/219/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/1733c19b0d90c966eb92fc22a2e6d134a5efc58b", - "head": { - "label": "waliem:master", - "ref": "master", - "sha": "1733c19b0d90c966eb92fc22a2e6d134a5efc58b", - "user": { - "login": "waliem", - "id": 84201089, - "node_id": "MDQ6VXNlcjg0MjAxMDg5", - "avatar_url": "https://avatars.githubusercontent.com/u/84201089?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/waliem", - "html_url": "https://github.com/waliem", - "followers_url": "https://api.github.com/users/waliem/followers", - "following_url": "https://api.github.com/users/waliem/following{/other_user}", - "gists_url": "https://api.github.com/users/waliem/gists{/gist_id}", - "starred_url": "https://api.github.com/users/waliem/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/waliem/subscriptions", - "organizations_url": "https://api.github.com/users/waliem/orgs", - "repos_url": "https://api.github.com/users/waliem/repos", - "events_url": "https://api.github.com/users/waliem/events{/privacy}", - "received_events_url": "https://api.github.com/users/waliem/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399096772, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwOTY3NzI=", - "name": "project-news-site", - "full_name": "waliem/project-news-site", - "private": false, - "owner": { - "login": "waliem", - "id": 84201089, - "node_id": "MDQ6VXNlcjg0MjAxMDg5", - "avatar_url": "https://avatars.githubusercontent.com/u/84201089?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/waliem", - "html_url": "https://github.com/waliem", - "followers_url": "https://api.github.com/users/waliem/followers", - "following_url": "https://api.github.com/users/waliem/following{/other_user}", - "gists_url": "https://api.github.com/users/waliem/gists{/gist_id}", - "starred_url": "https://api.github.com/users/waliem/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/waliem/subscriptions", - "organizations_url": "https://api.github.com/users/waliem/orgs", - "repos_url": "https://api.github.com/users/waliem/repos", - "events_url": "https://api.github.com/users/waliem/events{/privacy}", - "received_events_url": "https://api.github.com/users/waliem/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/waliem/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/waliem/project-news-site", - "forks_url": "https://api.github.com/repos/waliem/project-news-site/forks", - "keys_url": "https://api.github.com/repos/waliem/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/waliem/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/waliem/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/waliem/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/waliem/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/waliem/project-news-site/events", - "assignees_url": "https://api.github.com/repos/waliem/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/waliem/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/waliem/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/waliem/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/waliem/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/waliem/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/waliem/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/waliem/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/waliem/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/waliem/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/waliem/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/waliem/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/waliem/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/waliem/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/waliem/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/waliem/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/waliem/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/waliem/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/waliem/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/waliem/project-news-site/merges", - "archive_url": "https://api.github.com/repos/waliem/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/waliem/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/waliem/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/waliem/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/waliem/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/waliem/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/waliem/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/waliem/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/waliem/project-news-site/deployments", - "created_at": "2021-08-23T12:32:48Z", - "updated_at": "2021-08-30T12:40:31Z", - "pushed_at": "2021-08-30T12:40:28Z", - "git_url": "git://github.com/waliem/project-news-site.git", - "ssh_url": "git@github.com:waliem/project-news-site.git", - "clone_url": "https://github.com/waliem/project-news-site.git", - "svn_url": "https://github.com/waliem/project-news-site", - "homepage": null, - "size": 767, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/219" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/219" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/219" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/219/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/219/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/219/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/1733c19b0d90c966eb92fc22a2e6d134a5efc58b" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/218", - "id": 721975242, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTc1MjQy", - "html_url": "https://github.com/Technigo/project-news-site/pull/218", - "diff_url": "https://github.com/Technigo/project-news-site/pull/218.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/218.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/218", - "number": 218, - "state": "open", - "locked": false, - "title": "Kriss Stockhaus", - "user": { - "login": "silvertejp89", - "id": 80514864, - "node_id": "MDQ6VXNlcjgwNTE0ODY0", - "avatar_url": "https://avatars.githubusercontent.com/u/80514864?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/silvertejp89", - "html_url": "https://github.com/silvertejp89", - "followers_url": "https://api.github.com/users/silvertejp89/followers", - "following_url": "https://api.github.com/users/silvertejp89/following{/other_user}", - "gists_url": "https://api.github.com/users/silvertejp89/gists{/gist_id}", - "starred_url": "https://api.github.com/users/silvertejp89/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/silvertejp89/subscriptions", - "organizations_url": "https://api.github.com/users/silvertejp89/orgs", - "repos_url": "https://api.github.com/users/silvertejp89/repos", - "events_url": "https://api.github.com/users/silvertejp89/events{/privacy}", - "received_events_url": "https://api.github.com/users/silvertejp89/received_events", - "type": "User", - "site_admin": false - }, - "body": "https://determined-curran-644911.netlify.app/\r\n\r\nI´m really proud over that I managed to realize quite quickly when I started to get to particular with a not so important part of the website. I think it looks really good. I struggled with getting past the reading and planning, it was like I was afraid of starting to code. I also would like to practise flexbox and grid more, didn´t quite get the hang of it. ", - "created_at": "2021-08-29T15:51:54Z", - "updated_at": "2021-09-01T20:15:43Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "62c593228d1c44ac18a08388e0b13be7fc2962f3", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/218/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/218/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/218/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/ab2378020d0208528461efc68f04b71966c841f8", - "head": { - "label": "silvertejp89:master", - "ref": "master", - "sha": "ab2378020d0208528461efc68f04b71966c841f8", - "user": { - "login": "silvertejp89", - "id": 80514864, - "node_id": "MDQ6VXNlcjgwNTE0ODY0", - "avatar_url": "https://avatars.githubusercontent.com/u/80514864?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/silvertejp89", - "html_url": "https://github.com/silvertejp89", - "followers_url": "https://api.github.com/users/silvertejp89/followers", - "following_url": "https://api.github.com/users/silvertejp89/following{/other_user}", - "gists_url": "https://api.github.com/users/silvertejp89/gists{/gist_id}", - "starred_url": "https://api.github.com/users/silvertejp89/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/silvertejp89/subscriptions", - "organizations_url": "https://api.github.com/users/silvertejp89/orgs", - "repos_url": "https://api.github.com/users/silvertejp89/repos", - "events_url": "https://api.github.com/users/silvertejp89/events{/privacy}", - "received_events_url": "https://api.github.com/users/silvertejp89/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 400179621, - "node_id": "MDEwOlJlcG9zaXRvcnk0MDAxNzk2MjE=", - "name": "project-news-site", - "full_name": "silvertejp89/project-news-site", - "private": false, - "owner": { - "login": "silvertejp89", - "id": 80514864, - "node_id": "MDQ6VXNlcjgwNTE0ODY0", - "avatar_url": "https://avatars.githubusercontent.com/u/80514864?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/silvertejp89", - "html_url": "https://github.com/silvertejp89", - "followers_url": "https://api.github.com/users/silvertejp89/followers", - "following_url": "https://api.github.com/users/silvertejp89/following{/other_user}", - "gists_url": "https://api.github.com/users/silvertejp89/gists{/gist_id}", - "starred_url": "https://api.github.com/users/silvertejp89/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/silvertejp89/subscriptions", - "organizations_url": "https://api.github.com/users/silvertejp89/orgs", - "repos_url": "https://api.github.com/users/silvertejp89/repos", - "events_url": "https://api.github.com/users/silvertejp89/events{/privacy}", - "received_events_url": "https://api.github.com/users/silvertejp89/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/silvertejp89/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/silvertejp89/project-news-site", - "forks_url": "https://api.github.com/repos/silvertejp89/project-news-site/forks", - "keys_url": "https://api.github.com/repos/silvertejp89/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/silvertejp89/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/silvertejp89/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/silvertejp89/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/silvertejp89/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/silvertejp89/project-news-site/events", - "assignees_url": "https://api.github.com/repos/silvertejp89/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/silvertejp89/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/silvertejp89/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/silvertejp89/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/silvertejp89/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/silvertejp89/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/silvertejp89/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/silvertejp89/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/silvertejp89/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/silvertejp89/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/silvertejp89/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/silvertejp89/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/silvertejp89/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/silvertejp89/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/silvertejp89/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/silvertejp89/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/silvertejp89/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/silvertejp89/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/silvertejp89/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/silvertejp89/project-news-site/merges", - "archive_url": "https://api.github.com/repos/silvertejp89/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/silvertejp89/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/silvertejp89/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/silvertejp89/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/silvertejp89/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/silvertejp89/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/silvertejp89/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/silvertejp89/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/silvertejp89/project-news-site/deployments", - "created_at": "2021-08-26T13:30:49Z", - "updated_at": "2021-08-29T15:40:58Z", - "pushed_at": "2021-08-29T15:40:55Z", - "git_url": "git://github.com/silvertejp89/project-news-site.git", - "ssh_url": "git@github.com:silvertejp89/project-news-site.git", - "clone_url": "https://github.com/silvertejp89/project-news-site.git", - "svn_url": "https://github.com/silvertejp89/project-news-site", - "homepage": null, - "size": 2288, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/218" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/218" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/218" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/218/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/218/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/218/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/ab2378020d0208528461efc68f04b71966c841f8" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/217", - "id": 721973048, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTczMDQ4", - "html_url": "https://github.com/Technigo/project-news-site/pull/217", - "diff_url": "https://github.com/Technigo/project-news-site/pull/217.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/217.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/217", - "number": 217, - "state": "open", - "locked": false, - "title": "Week 2", - "user": { - "login": "MariaThomasson", - "id": 81348201, - "node_id": "MDQ6VXNlcjgxMzQ4MjAx", - "avatar_url": "https://avatars.githubusercontent.com/u/81348201?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/MariaThomasson", - "html_url": "https://github.com/MariaThomasson", - "followers_url": "https://api.github.com/users/MariaThomasson/followers", - "following_url": "https://api.github.com/users/MariaThomasson/following{/other_user}", - "gists_url": "https://api.github.com/users/MariaThomasson/gists{/gist_id}", - "starred_url": "https://api.github.com/users/MariaThomasson/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/MariaThomasson/subscriptions", - "organizations_url": "https://api.github.com/users/MariaThomasson/orgs", - "repos_url": "https://api.github.com/users/MariaThomasson/repos", - "events_url": "https://api.github.com/users/MariaThomasson/events{/privacy}", - "received_events_url": "https://api.github.com/users/MariaThomasson/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-29T15:38:51Z", - "updated_at": "2021-08-31T17:10:47Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "85a961e7f923558d7b032d30492ec3c83a16e402", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/217/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/217/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/217/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/2c6064b677cc81e232816de388f3cd0179240d69", - "head": { - "label": "MariaThomasson:master", - "ref": "master", - "sha": "2c6064b677cc81e232816de388f3cd0179240d69", - "user": { - "login": "MariaThomasson", - "id": 81348201, - "node_id": "MDQ6VXNlcjgxMzQ4MjAx", - "avatar_url": "https://avatars.githubusercontent.com/u/81348201?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/MariaThomasson", - "html_url": "https://github.com/MariaThomasson", - "followers_url": "https://api.github.com/users/MariaThomasson/followers", - "following_url": "https://api.github.com/users/MariaThomasson/following{/other_user}", - "gists_url": "https://api.github.com/users/MariaThomasson/gists{/gist_id}", - "starred_url": "https://api.github.com/users/MariaThomasson/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/MariaThomasson/subscriptions", - "organizations_url": "https://api.github.com/users/MariaThomasson/orgs", - "repos_url": "https://api.github.com/users/MariaThomasson/repos", - "events_url": "https://api.github.com/users/MariaThomasson/events{/privacy}", - "received_events_url": "https://api.github.com/users/MariaThomasson/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 397841036, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTc4NDEwMzY=", - "name": "project-news-site", - "full_name": "MariaThomasson/project-news-site", - "private": false, - "owner": { - "login": "MariaThomasson", - "id": 81348201, - "node_id": "MDQ6VXNlcjgxMzQ4MjAx", - "avatar_url": "https://avatars.githubusercontent.com/u/81348201?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/MariaThomasson", - "html_url": "https://github.com/MariaThomasson", - "followers_url": "https://api.github.com/users/MariaThomasson/followers", - "following_url": "https://api.github.com/users/MariaThomasson/following{/other_user}", - "gists_url": "https://api.github.com/users/MariaThomasson/gists{/gist_id}", - "starred_url": "https://api.github.com/users/MariaThomasson/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/MariaThomasson/subscriptions", - "organizations_url": "https://api.github.com/users/MariaThomasson/orgs", - "repos_url": "https://api.github.com/users/MariaThomasson/repos", - "events_url": "https://api.github.com/users/MariaThomasson/events{/privacy}", - "received_events_url": "https://api.github.com/users/MariaThomasson/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/MariaThomasson/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/MariaThomasson/project-news-site", - "forks_url": "https://api.github.com/repos/MariaThomasson/project-news-site/forks", - "keys_url": "https://api.github.com/repos/MariaThomasson/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/MariaThomasson/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/MariaThomasson/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/MariaThomasson/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/MariaThomasson/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/MariaThomasson/project-news-site/events", - "assignees_url": "https://api.github.com/repos/MariaThomasson/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/MariaThomasson/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/MariaThomasson/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/MariaThomasson/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/MariaThomasson/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/MariaThomasson/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/MariaThomasson/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/MariaThomasson/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/MariaThomasson/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/MariaThomasson/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/MariaThomasson/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/MariaThomasson/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/MariaThomasson/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/MariaThomasson/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/MariaThomasson/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/MariaThomasson/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/MariaThomasson/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/MariaThomasson/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/MariaThomasson/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/MariaThomasson/project-news-site/merges", - "archive_url": "https://api.github.com/repos/MariaThomasson/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/MariaThomasson/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/MariaThomasson/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/MariaThomasson/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/MariaThomasson/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/MariaThomasson/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/MariaThomasson/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/MariaThomasson/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/MariaThomasson/project-news-site/deployments", - "created_at": "2021-08-19T06:31:43Z", - "updated_at": "2021-08-30T06:42:10Z", - "pushed_at": "2021-08-30T06:42:07Z", - "git_url": "git://github.com/MariaThomasson/project-news-site.git", - "ssh_url": "git@github.com:MariaThomasson/project-news-site.git", - "clone_url": "https://github.com/MariaThomasson/project-news-site.git", - "svn_url": "https://github.com/MariaThomasson/project-news-site", - "homepage": null, - "size": 1623, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/217" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/217" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/217" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/217/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/217/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/217/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/2c6064b677cc81e232816de388f3cd0179240d69" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/216", - "id": 721966160, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTY2MTYw", - "html_url": "https://github.com/Technigo/project-news-site/pull/216", - "diff_url": "https://github.com/Technigo/project-news-site/pull/216.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/216.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/216", - "number": 216, - "state": "open", - "locked": false, - "title": "Project new site", - "user": { - "login": "Lundgreneddie", - "id": 81567703, - "node_id": "MDQ6VXNlcjgxNTY3NzAz", - "avatar_url": "https://avatars.githubusercontent.com/u/81567703?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Lundgreneddie", - "html_url": "https://github.com/Lundgreneddie", - "followers_url": "https://api.github.com/users/Lundgreneddie/followers", - "following_url": "https://api.github.com/users/Lundgreneddie/following{/other_user}", - "gists_url": "https://api.github.com/users/Lundgreneddie/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Lundgreneddie/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Lundgreneddie/subscriptions", - "organizations_url": "https://api.github.com/users/Lundgreneddie/orgs", - "repos_url": "https://api.github.com/users/Lundgreneddie/repos", - "events_url": "https://api.github.com/users/Lundgreneddie/events{/privacy}", - "received_events_url": "https://api.github.com/users/Lundgreneddie/received_events", - "type": "User", - "site_admin": false - }, - "body": "https://silly-elion-b8fbbc.netlify.app/\r\n\r\nProud: It's my first personal project, I'm proud that I got it done :D \r\n\r\nStuggle: I learned first hand that planning is crucial, wont be making the same mistakes again atleast :) ", - "created_at": "2021-08-29T14:56:37Z", - "updated_at": "2021-09-25T17:17:05Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "07e770445ee976d5ffa5cf664586266e9b2d9353", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/216/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/216/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/216/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/5fc498e3d67d22512d2ecc81ef1c51b2acf14b10", - "head": { - "label": "Lundgreneddie:master", - "ref": "master", - "sha": "5fc498e3d67d22512d2ecc81ef1c51b2acf14b10", - "user": { - "login": "Lundgreneddie", - "id": 81567703, - "node_id": "MDQ6VXNlcjgxNTY3NzAz", - "avatar_url": "https://avatars.githubusercontent.com/u/81567703?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Lundgreneddie", - "html_url": "https://github.com/Lundgreneddie", - "followers_url": "https://api.github.com/users/Lundgreneddie/followers", - "following_url": "https://api.github.com/users/Lundgreneddie/following{/other_user}", - "gists_url": "https://api.github.com/users/Lundgreneddie/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Lundgreneddie/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Lundgreneddie/subscriptions", - "organizations_url": "https://api.github.com/users/Lundgreneddie/orgs", - "repos_url": "https://api.github.com/users/Lundgreneddie/repos", - "events_url": "https://api.github.com/users/Lundgreneddie/events{/privacy}", - "received_events_url": "https://api.github.com/users/Lundgreneddie/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399024654, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjQ2NTQ=", - "name": "project-news-site", - "full_name": "Lundgreneddie/project-news-site", - "private": false, - "owner": { - "login": "Lundgreneddie", - "id": 81567703, - "node_id": "MDQ6VXNlcjgxNTY3NzAz", - "avatar_url": "https://avatars.githubusercontent.com/u/81567703?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Lundgreneddie", - "html_url": "https://github.com/Lundgreneddie", - "followers_url": "https://api.github.com/users/Lundgreneddie/followers", - "following_url": "https://api.github.com/users/Lundgreneddie/following{/other_user}", - "gists_url": "https://api.github.com/users/Lundgreneddie/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Lundgreneddie/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Lundgreneddie/subscriptions", - "organizations_url": "https://api.github.com/users/Lundgreneddie/orgs", - "repos_url": "https://api.github.com/users/Lundgreneddie/repos", - "events_url": "https://api.github.com/users/Lundgreneddie/events{/privacy}", - "received_events_url": "https://api.github.com/users/Lundgreneddie/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Lundgreneddie/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Lundgreneddie/project-news-site", - "forks_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Lundgreneddie/project-news-site/deployments", - "created_at": "2021-08-23T08:15:03Z", - "updated_at": "2021-09-25T17:17:07Z", - "pushed_at": "2021-09-25T17:17:04Z", - "git_url": "git://github.com/Lundgreneddie/project-news-site.git", - "ssh_url": "git@github.com:Lundgreneddie/project-news-site.git", - "clone_url": "https://github.com/Lundgreneddie/project-news-site.git", - "svn_url": "https://github.com/Lundgreneddie/project-news-site", - "homepage": null, - "size": 765, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/216" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/216" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/216" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/216/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/216/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/216/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/5fc498e3d67d22512d2ecc81ef1c51b2acf14b10" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/215", - "id": 721944360, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTQ0MzYw", - "html_url": "https://github.com/Technigo/project-news-site/pull/215", - "diff_url": "https://github.com/Technigo/project-news-site/pull/215.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/215.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/215", - "number": 215, - "state": "open", - "locked": false, - "title": "PriscilaAlfaro project-news-site", - "user": { - "login": "PriscilaAlfaro", - "id": 61456305, - "node_id": "MDQ6VXNlcjYxNDU2MzA1", - "avatar_url": "https://avatars.githubusercontent.com/u/61456305?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/PriscilaAlfaro", - "html_url": "https://github.com/PriscilaAlfaro", - "followers_url": "https://api.github.com/users/PriscilaAlfaro/followers", - "following_url": "https://api.github.com/users/PriscilaAlfaro/following{/other_user}", - "gists_url": "https://api.github.com/users/PriscilaAlfaro/gists{/gist_id}", - "starred_url": "https://api.github.com/users/PriscilaAlfaro/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/PriscilaAlfaro/subscriptions", - "organizations_url": "https://api.github.com/users/PriscilaAlfaro/orgs", - "repos_url": "https://api.github.com/users/PriscilaAlfaro/repos", - "events_url": "https://api.github.com/users/PriscilaAlfaro/events{/privacy}", - "received_events_url": "https://api.github.com/users/PriscilaAlfaro/received_events", - "type": "User", - "site_admin": false - }, - "body": "Hello, \r\n\r\nWith this project, I had a nice practice with flex-box, grid, and a responsive design based on mobile-first. \r\n\r\nLink to Netlify: https://tech-news-project-technigo.netlify.app/", - "created_at": "2021-08-29T12:37:08Z", - "updated_at": "2021-09-01T15:11:51Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "c7b7cfc7aeacaec65c6026a8ed28aecdd726acf7", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/215/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/215/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/215/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/bfa86867561d4a62966b6de4cd8de4f18c44b9b2", - "head": { - "label": "PriscilaAlfaro:master", - "ref": "master", - "sha": "bfa86867561d4a62966b6de4cd8de4f18c44b9b2", - "user": { - "login": "PriscilaAlfaro", - "id": 61456305, - "node_id": "MDQ6VXNlcjYxNDU2MzA1", - "avatar_url": "https://avatars.githubusercontent.com/u/61456305?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/PriscilaAlfaro", - "html_url": "https://github.com/PriscilaAlfaro", - "followers_url": "https://api.github.com/users/PriscilaAlfaro/followers", - "following_url": "https://api.github.com/users/PriscilaAlfaro/following{/other_user}", - "gists_url": "https://api.github.com/users/PriscilaAlfaro/gists{/gist_id}", - "starred_url": "https://api.github.com/users/PriscilaAlfaro/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/PriscilaAlfaro/subscriptions", - "organizations_url": "https://api.github.com/users/PriscilaAlfaro/orgs", - "repos_url": "https://api.github.com/users/PriscilaAlfaro/repos", - "events_url": "https://api.github.com/users/PriscilaAlfaro/events{/privacy}", - "received_events_url": "https://api.github.com/users/PriscilaAlfaro/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398274623, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTgyNzQ2MjM=", - "name": "project-news-site", - "full_name": "PriscilaAlfaro/project-news-site", - "private": false, - "owner": { - "login": "PriscilaAlfaro", - "id": 61456305, - "node_id": "MDQ6VXNlcjYxNDU2MzA1", - "avatar_url": "https://avatars.githubusercontent.com/u/61456305?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/PriscilaAlfaro", - "html_url": "https://github.com/PriscilaAlfaro", - "followers_url": "https://api.github.com/users/PriscilaAlfaro/followers", - "following_url": "https://api.github.com/users/PriscilaAlfaro/following{/other_user}", - "gists_url": "https://api.github.com/users/PriscilaAlfaro/gists{/gist_id}", - "starred_url": "https://api.github.com/users/PriscilaAlfaro/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/PriscilaAlfaro/subscriptions", - "organizations_url": "https://api.github.com/users/PriscilaAlfaro/orgs", - "repos_url": "https://api.github.com/users/PriscilaAlfaro/repos", - "events_url": "https://api.github.com/users/PriscilaAlfaro/events{/privacy}", - "received_events_url": "https://api.github.com/users/PriscilaAlfaro/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/PriscilaAlfaro/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site", - "forks_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/forks", - "keys_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/events", - "assignees_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/merges", - "archive_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/PriscilaAlfaro/project-news-site/deployments", - "created_at": "2021-08-20T12:49:35Z", - "updated_at": "2021-08-29T12:16:08Z", - "pushed_at": "2021-08-29T12:16:05Z", - "git_url": "git://github.com/PriscilaAlfaro/project-news-site.git", - "ssh_url": "git@github.com:PriscilaAlfaro/project-news-site.git", - "clone_url": "https://github.com/PriscilaAlfaro/project-news-site.git", - "svn_url": "https://github.com/PriscilaAlfaro/project-news-site", - "homepage": null, - "size": 1292, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/215" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/215" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/215" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/215/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/215/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/215/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/bfa86867561d4a62966b6de4cd8de4f18c44b9b2" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/214", - "id": 721941418, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTQxNDE4", - "html_url": "https://github.com/Technigo/project-news-site/pull/214", - "diff_url": "https://github.com/Technigo/project-news-site/pull/214.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/214.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/214", - "number": 214, - "state": "open", - "locked": false, - "title": "Finished project-news-site", - "user": { - "login": "themisk84", - "id": 77687868, - "node_id": "MDQ6VXNlcjc3Njg3ODY4", - "avatar_url": "https://avatars.githubusercontent.com/u/77687868?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/themisk84", - "html_url": "https://github.com/themisk84", - "followers_url": "https://api.github.com/users/themisk84/followers", - "following_url": "https://api.github.com/users/themisk84/following{/other_user}", - "gists_url": "https://api.github.com/users/themisk84/gists{/gist_id}", - "starred_url": "https://api.github.com/users/themisk84/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/themisk84/subscriptions", - "organizations_url": "https://api.github.com/users/themisk84/orgs", - "repos_url": "https://api.github.com/users/themisk84/repos", - "events_url": "https://api.github.com/users/themisk84/events{/privacy}", - "received_events_url": "https://api.github.com/users/themisk84/received_events", - "type": "User", - "site_admin": false - }, - "body": "My netlify link\r\nhttps://sharp-murdock-feb5e6.netlify.app/#Music", - "created_at": "2021-08-29T12:15:50Z", - "updated_at": "2021-09-01T14:20:17Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "628faa80635bc4ae56fb0dedc368ab1a348da504", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/214/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/214/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/214/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/bfcd27d55a345b34333c014e1dbef93b7def7715", - "head": { - "label": "themisk84:master", - "ref": "master", - "sha": "bfcd27d55a345b34333c014e1dbef93b7def7715", - "user": { - "login": "themisk84", - "id": 77687868, - "node_id": "MDQ6VXNlcjc3Njg3ODY4", - "avatar_url": "https://avatars.githubusercontent.com/u/77687868?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/themisk84", - "html_url": "https://github.com/themisk84", - "followers_url": "https://api.github.com/users/themisk84/followers", - "following_url": "https://api.github.com/users/themisk84/following{/other_user}", - "gists_url": "https://api.github.com/users/themisk84/gists{/gist_id}", - "starred_url": "https://api.github.com/users/themisk84/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/themisk84/subscriptions", - "organizations_url": "https://api.github.com/users/themisk84/orgs", - "repos_url": "https://api.github.com/users/themisk84/repos", - "events_url": "https://api.github.com/users/themisk84/events{/privacy}", - "received_events_url": "https://api.github.com/users/themisk84/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399025362, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjUzNjI=", - "name": "project-news-site", - "full_name": "themisk84/project-news-site", - "private": false, - "owner": { - "login": "themisk84", - "id": 77687868, - "node_id": "MDQ6VXNlcjc3Njg3ODY4", - "avatar_url": "https://avatars.githubusercontent.com/u/77687868?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/themisk84", - "html_url": "https://github.com/themisk84", - "followers_url": "https://api.github.com/users/themisk84/followers", - "following_url": "https://api.github.com/users/themisk84/following{/other_user}", - "gists_url": "https://api.github.com/users/themisk84/gists{/gist_id}", - "starred_url": "https://api.github.com/users/themisk84/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/themisk84/subscriptions", - "organizations_url": "https://api.github.com/users/themisk84/orgs", - "repos_url": "https://api.github.com/users/themisk84/repos", - "events_url": "https://api.github.com/users/themisk84/events{/privacy}", - "received_events_url": "https://api.github.com/users/themisk84/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/themisk84/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/themisk84/project-news-site", - "forks_url": "https://api.github.com/repos/themisk84/project-news-site/forks", - "keys_url": "https://api.github.com/repos/themisk84/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/themisk84/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/themisk84/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/themisk84/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/themisk84/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/themisk84/project-news-site/events", - "assignees_url": "https://api.github.com/repos/themisk84/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/themisk84/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/themisk84/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/themisk84/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/themisk84/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/themisk84/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/themisk84/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/themisk84/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/themisk84/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/themisk84/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/themisk84/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/themisk84/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/themisk84/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/themisk84/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/themisk84/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/themisk84/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/themisk84/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/themisk84/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/themisk84/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/themisk84/project-news-site/merges", - "archive_url": "https://api.github.com/repos/themisk84/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/themisk84/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/themisk84/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/themisk84/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/themisk84/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/themisk84/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/themisk84/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/themisk84/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/themisk84/project-news-site/deployments", - "created_at": "2021-08-23T08:17:37Z", - "updated_at": "2021-08-29T11:56:42Z", - "pushed_at": "2021-08-29T11:56:40Z", - "git_url": "git://github.com/themisk84/project-news-site.git", - "ssh_url": "git@github.com:themisk84/project-news-site.git", - "clone_url": "https://github.com/themisk84/project-news-site.git", - "svn_url": "https://github.com/themisk84/project-news-site", - "homepage": null, - "size": 3277, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/214" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/214" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/214" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/214/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/214/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/214/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/bfcd27d55a345b34333c014e1dbef93b7def7715" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/213", - "id": 721938451, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTM4NDUx", - "html_url": "https://github.com/Technigo/project-news-site/pull/213", - "diff_url": "https://github.com/Technigo/project-news-site/pull/213.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/213.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/213", - "number": 213, - "state": "open", - "locked": false, - "title": "Reinis Kalvins News site", - "user": { - "login": "Meeteyes", - "id": 83075903, - "node_id": "MDQ6VXNlcjgzMDc1OTAz", - "avatar_url": "https://avatars.githubusercontent.com/u/83075903?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Meeteyes", - "html_url": "https://github.com/Meeteyes", - "followers_url": "https://api.github.com/users/Meeteyes/followers", - "following_url": "https://api.github.com/users/Meeteyes/following{/other_user}", - "gists_url": "https://api.github.com/users/Meeteyes/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Meeteyes/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Meeteyes/subscriptions", - "organizations_url": "https://api.github.com/users/Meeteyes/orgs", - "repos_url": "https://api.github.com/users/Meeteyes/repos", - "events_url": "https://api.github.com/users/Meeteyes/events{/privacy}", - "received_events_url": "https://api.github.com/users/Meeteyes/received_events", - "type": "User", - "site_admin": false - }, - "body": "I tried to experiment with basics from all the concepts covered in this weeks class.", - "created_at": "2021-08-29T11:56:14Z", - "updated_at": "2021-09-01T12:03:20Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "77cffdc18c5ec4522f2261f002118e2da499d47a", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/213/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/213/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/213/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/729bb7e6ed79746e18f45bf324816d94af068096", - "head": { - "label": "Meeteyes:master", - "ref": "master", - "sha": "729bb7e6ed79746e18f45bf324816d94af068096", - "user": { - "login": "Meeteyes", - "id": 83075903, - "node_id": "MDQ6VXNlcjgzMDc1OTAz", - "avatar_url": "https://avatars.githubusercontent.com/u/83075903?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Meeteyes", - "html_url": "https://github.com/Meeteyes", - "followers_url": "https://api.github.com/users/Meeteyes/followers", - "following_url": "https://api.github.com/users/Meeteyes/following{/other_user}", - "gists_url": "https://api.github.com/users/Meeteyes/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Meeteyes/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Meeteyes/subscriptions", - "organizations_url": "https://api.github.com/users/Meeteyes/orgs", - "repos_url": "https://api.github.com/users/Meeteyes/repos", - "events_url": "https://api.github.com/users/Meeteyes/events{/privacy}", - "received_events_url": "https://api.github.com/users/Meeteyes/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399064743, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwNjQ3NDM=", - "name": "project-news-site", - "full_name": "Meeteyes/project-news-site", - "private": false, - "owner": { - "login": "Meeteyes", - "id": 83075903, - "node_id": "MDQ6VXNlcjgzMDc1OTAz", - "avatar_url": "https://avatars.githubusercontent.com/u/83075903?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Meeteyes", - "html_url": "https://github.com/Meeteyes", - "followers_url": "https://api.github.com/users/Meeteyes/followers", - "following_url": "https://api.github.com/users/Meeteyes/following{/other_user}", - "gists_url": "https://api.github.com/users/Meeteyes/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Meeteyes/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Meeteyes/subscriptions", - "organizations_url": "https://api.github.com/users/Meeteyes/orgs", - "repos_url": "https://api.github.com/users/Meeteyes/repos", - "events_url": "https://api.github.com/users/Meeteyes/events{/privacy}", - "received_events_url": "https://api.github.com/users/Meeteyes/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Meeteyes/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Meeteyes/project-news-site", - "forks_url": "https://api.github.com/repos/Meeteyes/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Meeteyes/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Meeteyes/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Meeteyes/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Meeteyes/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Meeteyes/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Meeteyes/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Meeteyes/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Meeteyes/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Meeteyes/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Meeteyes/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Meeteyes/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Meeteyes/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Meeteyes/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Meeteyes/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Meeteyes/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Meeteyes/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Meeteyes/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Meeteyes/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Meeteyes/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Meeteyes/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Meeteyes/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Meeteyes/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Meeteyes/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Meeteyes/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Meeteyes/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Meeteyes/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Meeteyes/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Meeteyes/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Meeteyes/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Meeteyes/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Meeteyes/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Meeteyes/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Meeteyes/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Meeteyes/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Meeteyes/project-news-site/deployments", - "created_at": "2021-08-23T10:41:59Z", - "updated_at": "2021-08-29T11:48:30Z", - "pushed_at": "2021-08-29T11:48:28Z", - "git_url": "git://github.com/Meeteyes/project-news-site.git", - "ssh_url": "git@github.com:Meeteyes/project-news-site.git", - "clone_url": "https://github.com/Meeteyes/project-news-site.git", - "svn_url": "https://github.com/Meeteyes/project-news-site", - "homepage": null, - "size": 779, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/213" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/213" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/213" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/213/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/213/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/213/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/729bb7e6ed79746e18f45bf324816d94af068096" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/212", - "id": 721923733, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTIzNzMz", - "html_url": "https://github.com/Technigo/project-news-site/pull/212", - "diff_url": "https://github.com/Technigo/project-news-site/pull/212.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/212.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/212", - "number": 212, - "state": "open", - "locked": false, - "title": "Rebecca Philipson - Project 2", - "user": { - "login": "Rephili", - "id": 72921631, - "node_id": "MDQ6VXNlcjcyOTIxNjMx", - "avatar_url": "https://avatars.githubusercontent.com/u/72921631?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Rephili", - "html_url": "https://github.com/Rephili", - "followers_url": "https://api.github.com/users/Rephili/followers", - "following_url": "https://api.github.com/users/Rephili/following{/other_user}", - "gists_url": "https://api.github.com/users/Rephili/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Rephili/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Rephili/subscriptions", - "organizations_url": "https://api.github.com/users/Rephili/orgs", - "repos_url": "https://api.github.com/users/Rephili/repos", - "events_url": "https://api.github.com/users/Rephili/events{/privacy}", - "received_events_url": "https://api.github.com/users/Rephili/received_events", - "type": "User", - "site_admin": false - }, - "body": "News site", - "created_at": "2021-08-29T10:05:51Z", - "updated_at": "2021-09-18T20:50:35Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "41e612dd340b3f7a67cb3462c3a660978507c986", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/212/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/212/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/212/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/cc861fd6559baa45c1fc687552d33793e1df3644", - "head": { - "label": "Rephili:master", - "ref": "master", - "sha": "cc861fd6559baa45c1fc687552d33793e1df3644", - "user": { - "login": "Rephili", - "id": 72921631, - "node_id": "MDQ6VXNlcjcyOTIxNjMx", - "avatar_url": "https://avatars.githubusercontent.com/u/72921631?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Rephili", - "html_url": "https://github.com/Rephili", - "followers_url": "https://api.github.com/users/Rephili/followers", - "following_url": "https://api.github.com/users/Rephili/following{/other_user}", - "gists_url": "https://api.github.com/users/Rephili/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Rephili/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Rephili/subscriptions", - "organizations_url": "https://api.github.com/users/Rephili/orgs", - "repos_url": "https://api.github.com/users/Rephili/repos", - "events_url": "https://api.github.com/users/Rephili/events{/privacy}", - "received_events_url": "https://api.github.com/users/Rephili/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399719098, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTk3MTkwOTg=", - "name": "project-news-site", - "full_name": "Rephili/project-news-site", - "private": false, - "owner": { - "login": "Rephili", - "id": 72921631, - "node_id": "MDQ6VXNlcjcyOTIxNjMx", - "avatar_url": "https://avatars.githubusercontent.com/u/72921631?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Rephili", - "html_url": "https://github.com/Rephili", - "followers_url": "https://api.github.com/users/Rephili/followers", - "following_url": "https://api.github.com/users/Rephili/following{/other_user}", - "gists_url": "https://api.github.com/users/Rephili/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Rephili/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Rephili/subscriptions", - "organizations_url": "https://api.github.com/users/Rephili/orgs", - "repos_url": "https://api.github.com/users/Rephili/repos", - "events_url": "https://api.github.com/users/Rephili/events{/privacy}", - "received_events_url": "https://api.github.com/users/Rephili/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Rephili/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Rephili/project-news-site", - "forks_url": "https://api.github.com/repos/Rephili/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Rephili/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Rephili/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Rephili/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Rephili/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Rephili/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Rephili/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Rephili/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Rephili/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Rephili/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Rephili/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Rephili/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Rephili/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Rephili/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Rephili/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Rephili/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Rephili/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Rephili/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Rephili/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Rephili/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Rephili/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Rephili/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Rephili/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Rephili/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Rephili/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Rephili/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Rephili/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Rephili/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Rephili/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Rephili/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Rephili/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Rephili/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Rephili/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Rephili/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Rephili/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Rephili/project-news-site/deployments", - "created_at": "2021-08-25T06:50:25Z", - "updated_at": "2021-09-18T20:50:37Z", - "pushed_at": "2021-09-18T20:50:34Z", - "git_url": "git://github.com/Rephili/project-news-site.git", - "ssh_url": "git@github.com:Rephili/project-news-site.git", - "clone_url": "https://github.com/Rephili/project-news-site.git", - "svn_url": "https://github.com/Rephili/project-news-site", - "homepage": null, - "size": 24005, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/212" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/212" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/212" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/212/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/212/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/212/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/cc861fd6559baa45c1fc687552d33793e1df3644" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/211", - "id": 721919984, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTE5OTg0", - "html_url": "https://github.com/Technigo/project-news-site/pull/211", - "diff_url": "https://github.com/Technigo/project-news-site/pull/211.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/211.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/211", - "number": 211, - "state": "open", - "locked": false, - "title": "Project news site Rebecca Blixt", - "user": { - "login": "BritishSwede", - "id": 81031613, - "node_id": "MDQ6VXNlcjgxMDMxNjEz", - "avatar_url": "https://avatars.githubusercontent.com/u/81031613?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/BritishSwede", - "html_url": "https://github.com/BritishSwede", - "followers_url": "https://api.github.com/users/BritishSwede/followers", - "following_url": "https://api.github.com/users/BritishSwede/following{/other_user}", - "gists_url": "https://api.github.com/users/BritishSwede/gists{/gist_id}", - "starred_url": "https://api.github.com/users/BritishSwede/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/BritishSwede/subscriptions", - "organizations_url": "https://api.github.com/users/BritishSwede/orgs", - "repos_url": "https://api.github.com/users/BritishSwede/repos", - "events_url": "https://api.github.com/users/BritishSwede/events{/privacy}", - "received_events_url": "https://api.github.com/users/BritishSwede/received_events", - "type": "User", - "site_admin": false - }, - "body": "Link to my deployed project: \r\nhttps://britishswede-project-news-site.netlify.app/\r\n\r\nMy reflections on how this weeks project turned out: \r\nBased on the little knowledge I had before I started this project, I'm super happy with the result! If I had some more time I'd work more on the design and add some animations to the site. I'd also look into how to not include the logo in the hover effect. I did do a lot of research on my own, in the future I'm going to ask more questions to save time. I'm also going to make sure I use images that have the same orientation and size from the start of the project to save time and reduce the amount of frustration... ", - "created_at": "2021-08-29T09:36:50Z", - "updated_at": "2021-08-31T16:54:14Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "50da903e2b2286967a1ecde3ba83bc0400111ddf", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/211/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/211/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/211/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/29487f724f4e7df81125ff7f7a9972e06f06a0d4", - "head": { - "label": "BritishSwede:master", - "ref": "master", - "sha": "29487f724f4e7df81125ff7f7a9972e06f06a0d4", - "user": { - "login": "BritishSwede", - "id": 81031613, - "node_id": "MDQ6VXNlcjgxMDMxNjEz", - "avatar_url": "https://avatars.githubusercontent.com/u/81031613?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/BritishSwede", - "html_url": "https://github.com/BritishSwede", - "followers_url": "https://api.github.com/users/BritishSwede/followers", - "following_url": "https://api.github.com/users/BritishSwede/following{/other_user}", - "gists_url": "https://api.github.com/users/BritishSwede/gists{/gist_id}", - "starred_url": "https://api.github.com/users/BritishSwede/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/BritishSwede/subscriptions", - "organizations_url": "https://api.github.com/users/BritishSwede/orgs", - "repos_url": "https://api.github.com/users/BritishSwede/repos", - "events_url": "https://api.github.com/users/BritishSwede/events{/privacy}", - "received_events_url": "https://api.github.com/users/BritishSwede/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399011146, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMTExNDY=", - "name": "project-news-site", - "full_name": "BritishSwede/project-news-site", - "private": false, - "owner": { - "login": "BritishSwede", - "id": 81031613, - "node_id": "MDQ6VXNlcjgxMDMxNjEz", - "avatar_url": "https://avatars.githubusercontent.com/u/81031613?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/BritishSwede", - "html_url": "https://github.com/BritishSwede", - "followers_url": "https://api.github.com/users/BritishSwede/followers", - "following_url": "https://api.github.com/users/BritishSwede/following{/other_user}", - "gists_url": "https://api.github.com/users/BritishSwede/gists{/gist_id}", - "starred_url": "https://api.github.com/users/BritishSwede/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/BritishSwede/subscriptions", - "organizations_url": "https://api.github.com/users/BritishSwede/orgs", - "repos_url": "https://api.github.com/users/BritishSwede/repos", - "events_url": "https://api.github.com/users/BritishSwede/events{/privacy}", - "received_events_url": "https://api.github.com/users/BritishSwede/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/BritishSwede/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/BritishSwede/project-news-site", - "forks_url": "https://api.github.com/repos/BritishSwede/project-news-site/forks", - "keys_url": "https://api.github.com/repos/BritishSwede/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/BritishSwede/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/BritishSwede/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/BritishSwede/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/BritishSwede/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/BritishSwede/project-news-site/events", - "assignees_url": "https://api.github.com/repos/BritishSwede/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/BritishSwede/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/BritishSwede/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/BritishSwede/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/BritishSwede/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/BritishSwede/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/BritishSwede/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/BritishSwede/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/BritishSwede/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/BritishSwede/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/BritishSwede/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/BritishSwede/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/BritishSwede/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/BritishSwede/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/BritishSwede/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/BritishSwede/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/BritishSwede/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/BritishSwede/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/BritishSwede/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/BritishSwede/project-news-site/merges", - "archive_url": "https://api.github.com/repos/BritishSwede/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/BritishSwede/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/BritishSwede/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/BritishSwede/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/BritishSwede/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/BritishSwede/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/BritishSwede/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/BritishSwede/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/BritishSwede/project-news-site/deployments", - "created_at": "2021-08-23T07:25:31Z", - "updated_at": "2021-08-29T09:25:11Z", - "pushed_at": "2021-08-29T09:25:08Z", - "git_url": "git://github.com/BritishSwede/project-news-site.git", - "ssh_url": "git@github.com:BritishSwede/project-news-site.git", - "clone_url": "https://github.com/BritishSwede/project-news-site.git", - "svn_url": "https://github.com/BritishSwede/project-news-site", - "homepage": null, - "size": 34261, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/211" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/211" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/211" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/211/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/211/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/211/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/29487f724f4e7df81125ff7f7a9972e06f06a0d4" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/210", - "id": 721918139, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTE4MTM5", - "html_url": "https://github.com/Technigo/project-news-site/pull/210", - "diff_url": "https://github.com/Technigo/project-news-site/pull/210.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/210.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/210", - "number": 210, - "state": "open", - "locked": false, - "title": "Week 2 - Project-news-site -Jessi Nygren Walhed ", - "user": { - "login": "hemmahosjessi", - "id": 38652781, - "node_id": "MDQ6VXNlcjM4NjUyNzgx", - "avatar_url": "https://avatars.githubusercontent.com/u/38652781?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/hemmahosjessi", - "html_url": "https://github.com/hemmahosjessi", - "followers_url": "https://api.github.com/users/hemmahosjessi/followers", - "following_url": "https://api.github.com/users/hemmahosjessi/following{/other_user}", - "gists_url": "https://api.github.com/users/hemmahosjessi/gists{/gist_id}", - "starred_url": "https://api.github.com/users/hemmahosjessi/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/hemmahosjessi/subscriptions", - "organizations_url": "https://api.github.com/users/hemmahosjessi/orgs", - "repos_url": "https://api.github.com/users/hemmahosjessi/repos", - "events_url": "https://api.github.com/users/hemmahosjessi/events{/privacy}", - "received_events_url": "https://api.github.com/users/hemmahosjessi/received_events", - "type": "User", - "site_admin": false - }, - "body": "Week 2 ⭐️ \r\nhttps://reverent-shockley-cab6a2.netlify.app/\r\n\r\nMost proud of the fact that I made it! Had a lot of struggle with Flexbox. Think I experience Grid easier. But needs more exploration. ", - "created_at": "2021-08-29T09:22:32Z", - "updated_at": "2021-09-05T20:25:01Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "2362f69b49a47a8c98a79d8ea4c37dd5574a9163", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/210/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/210/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/210/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/534b09a1e4077aca6e037ae4368b04d4a68cc213", - "head": { - "label": "hemmahosjessi:master", - "ref": "master", - "sha": "534b09a1e4077aca6e037ae4368b04d4a68cc213", - "user": { - "login": "hemmahosjessi", - "id": 38652781, - "node_id": "MDQ6VXNlcjM4NjUyNzgx", - "avatar_url": "https://avatars.githubusercontent.com/u/38652781?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/hemmahosjessi", - "html_url": "https://github.com/hemmahosjessi", - "followers_url": "https://api.github.com/users/hemmahosjessi/followers", - "following_url": "https://api.github.com/users/hemmahosjessi/following{/other_user}", - "gists_url": "https://api.github.com/users/hemmahosjessi/gists{/gist_id}", - "starred_url": "https://api.github.com/users/hemmahosjessi/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/hemmahosjessi/subscriptions", - "organizations_url": "https://api.github.com/users/hemmahosjessi/orgs", - "repos_url": "https://api.github.com/users/hemmahosjessi/repos", - "events_url": "https://api.github.com/users/hemmahosjessi/events{/privacy}", - "received_events_url": "https://api.github.com/users/hemmahosjessi/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399024667, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjQ2Njc=", - "name": "project-news-site", - "full_name": "hemmahosjessi/project-news-site", - "private": false, - "owner": { - "login": "hemmahosjessi", - "id": 38652781, - "node_id": "MDQ6VXNlcjM4NjUyNzgx", - "avatar_url": "https://avatars.githubusercontent.com/u/38652781?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/hemmahosjessi", - "html_url": "https://github.com/hemmahosjessi", - "followers_url": "https://api.github.com/users/hemmahosjessi/followers", - "following_url": "https://api.github.com/users/hemmahosjessi/following{/other_user}", - "gists_url": "https://api.github.com/users/hemmahosjessi/gists{/gist_id}", - "starred_url": "https://api.github.com/users/hemmahosjessi/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/hemmahosjessi/subscriptions", - "organizations_url": "https://api.github.com/users/hemmahosjessi/orgs", - "repos_url": "https://api.github.com/users/hemmahosjessi/repos", - "events_url": "https://api.github.com/users/hemmahosjessi/events{/privacy}", - "received_events_url": "https://api.github.com/users/hemmahosjessi/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/hemmahosjessi/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/hemmahosjessi/project-news-site", - "forks_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/forks", - "keys_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/events", - "assignees_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/merges", - "archive_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/hemmahosjessi/project-news-site/deployments", - "created_at": "2021-08-23T08:15:05Z", - "updated_at": "2021-08-29T16:29:30Z", - "pushed_at": "2021-08-29T16:29:27Z", - "git_url": "git://github.com/hemmahosjessi/project-news-site.git", - "ssh_url": "git@github.com:hemmahosjessi/project-news-site.git", - "clone_url": "https://github.com/hemmahosjessi/project-news-site.git", - "svn_url": "https://github.com/hemmahosjessi/project-news-site", - "homepage": null, - "size": 4290, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/210" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/210" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/210" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/210/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/210/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/210/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/534b09a1e4077aca6e037ae4368b04d4a68cc213" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/209", - "id": 721901022, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxOTAxMDIy", - "html_url": "https://github.com/Technigo/project-news-site/pull/209", - "diff_url": "https://github.com/Technigo/project-news-site/pull/209.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/209.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/209", - "number": 209, - "state": "open", - "locked": false, - "title": "Week 2 News Site by Lousanne", - "user": { - "login": "loulunds", - "id": 56274821, - "node_id": "MDQ6VXNlcjU2Mjc0ODIx", - "avatar_url": "https://avatars.githubusercontent.com/u/56274821?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/loulunds", - "html_url": "https://github.com/loulunds", - "followers_url": "https://api.github.com/users/loulunds/followers", - "following_url": "https://api.github.com/users/loulunds/following{/other_user}", - "gists_url": "https://api.github.com/users/loulunds/gists{/gist_id}", - "starred_url": "https://api.github.com/users/loulunds/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/loulunds/subscriptions", - "organizations_url": "https://api.github.com/users/loulunds/orgs", - "repos_url": "https://api.github.com/users/loulunds/repos", - "events_url": "https://api.github.com/users/loulunds/events{/privacy}", - "received_events_url": "https://api.github.com/users/loulunds/received_events", - "type": "User", - "site_admin": false - }, - "body": "\r\nI am proud of the project that I did. I know that code is still messy but will improve on writing codes in the future. I realized I complicate things instead of finding simpler ways in doing things. The part that I am most proud of is the how I managed to use Flexbox to change the layout in my website though I still have some problems with the sizing and the stretching of the elements in Ipad Pro view. \r\n\r\nSubmitted by: Lousanne Lundström\r\n\r\n[Fake News Site](https://frosty-bhaskara-292b4c.netlify.app/)", - "created_at": "2021-08-29T07:15:58Z", - "updated_at": "2021-08-30T17:37:49Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "8dffb46fa0b4a195867d120a56deb21ea7378a27", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/209/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/209/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/209/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/f8691e4348a9060b1a253774d9da1c15ae220deb", - "head": { - "label": "loulunds:master", - "ref": "master", - "sha": "f8691e4348a9060b1a253774d9da1c15ae220deb", - "user": { - "login": "loulunds", - "id": 56274821, - "node_id": "MDQ6VXNlcjU2Mjc0ODIx", - "avatar_url": "https://avatars.githubusercontent.com/u/56274821?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/loulunds", - "html_url": "https://github.com/loulunds", - "followers_url": "https://api.github.com/users/loulunds/followers", - "following_url": "https://api.github.com/users/loulunds/following{/other_user}", - "gists_url": "https://api.github.com/users/loulunds/gists{/gist_id}", - "starred_url": "https://api.github.com/users/loulunds/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/loulunds/subscriptions", - "organizations_url": "https://api.github.com/users/loulunds/orgs", - "repos_url": "https://api.github.com/users/loulunds/repos", - "events_url": "https://api.github.com/users/loulunds/events{/privacy}", - "received_events_url": "https://api.github.com/users/loulunds/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399248698, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkyNDg2OTg=", - "name": "project-news-site", - "full_name": "loulunds/project-news-site", - "private": false, - "owner": { - "login": "loulunds", - "id": 56274821, - "node_id": "MDQ6VXNlcjU2Mjc0ODIx", - "avatar_url": "https://avatars.githubusercontent.com/u/56274821?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/loulunds", - "html_url": "https://github.com/loulunds", - "followers_url": "https://api.github.com/users/loulunds/followers", - "following_url": "https://api.github.com/users/loulunds/following{/other_user}", - "gists_url": "https://api.github.com/users/loulunds/gists{/gist_id}", - "starred_url": "https://api.github.com/users/loulunds/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/loulunds/subscriptions", - "organizations_url": "https://api.github.com/users/loulunds/orgs", - "repos_url": "https://api.github.com/users/loulunds/repos", - "events_url": "https://api.github.com/users/loulunds/events{/privacy}", - "received_events_url": "https://api.github.com/users/loulunds/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/loulunds/project-news-site", - "description": "a news site project mainly for using flexbox and grid using HTML and CSS", - "fork": true, - "url": "https://api.github.com/repos/loulunds/project-news-site", - "forks_url": "https://api.github.com/repos/loulunds/project-news-site/forks", - "keys_url": "https://api.github.com/repos/loulunds/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/loulunds/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/loulunds/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/loulunds/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/loulunds/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/loulunds/project-news-site/events", - "assignees_url": "https://api.github.com/repos/loulunds/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/loulunds/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/loulunds/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/loulunds/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/loulunds/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/loulunds/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/loulunds/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/loulunds/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/loulunds/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/loulunds/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/loulunds/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/loulunds/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/loulunds/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/loulunds/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/loulunds/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/loulunds/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/loulunds/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/loulunds/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/loulunds/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/loulunds/project-news-site/merges", - "archive_url": "https://api.github.com/repos/loulunds/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/loulunds/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/loulunds/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/loulunds/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/loulunds/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/loulunds/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/loulunds/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/loulunds/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/loulunds/project-news-site/deployments", - "created_at": "2021-08-23T21:10:19Z", - "updated_at": "2021-08-29T07:13:45Z", - "pushed_at": "2021-08-29T07:13:42Z", - "git_url": "git://github.com/loulunds/project-news-site.git", - "ssh_url": "git@github.com:loulunds/project-news-site.git", - "clone_url": "https://github.com/loulunds/project-news-site.git", - "svn_url": "https://github.com/loulunds/project-news-site", - "homepage": "https://frosty-bhaskara-292b4c.netlify.app/", - "size": 777, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/209" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/209" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/209" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/209/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/209/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/209/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/f8691e4348a9060b1a253774d9da1c15ae220deb" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/208", - "id": 721899936, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODk5OTM2", - "html_url": "https://github.com/Technigo/project-news-site/pull/208", - "diff_url": "https://github.com/Technigo/project-news-site/pull/208.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/208.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/208", - "number": 208, - "state": "open", - "locked": false, - "title": "Gustav Frid", - "user": { - "login": "gustavfrid", - "id": 49785603, - "node_id": "MDQ6VXNlcjQ5Nzg1NjAz", - "avatar_url": "https://avatars.githubusercontent.com/u/49785603?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gustavfrid", - "html_url": "https://github.com/gustavfrid", - "followers_url": "https://api.github.com/users/gustavfrid/followers", - "following_url": "https://api.github.com/users/gustavfrid/following{/other_user}", - "gists_url": "https://api.github.com/users/gustavfrid/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gustavfrid/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gustavfrid/subscriptions", - "organizations_url": "https://api.github.com/users/gustavfrid/orgs", - "repos_url": "https://api.github.com/users/gustavfrid/repos", - "events_url": "https://api.github.com/users/gustavfrid/events{/privacy}", - "received_events_url": "https://api.github.com/users/gustavfrid/received_events", - "type": "User", - "site_admin": false - }, - "body": "Link to deployed site:\r\nhttps://gustavfrid-week-2-news-site.netlify.app/", - "created_at": "2021-08-29T07:06:42Z", - "updated_at": "2021-08-31T10:15:24Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "1c0ae02204824de1a9bfe7230658512c96e4639b", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/208/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/208/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/208/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/515dbc36069bc7c085420d19fe0943d7bb5d4932", - "head": { - "label": "gustavfrid:master", - "ref": "master", - "sha": "515dbc36069bc7c085420d19fe0943d7bb5d4932", - "user": { - "login": "gustavfrid", - "id": 49785603, - "node_id": "MDQ6VXNlcjQ5Nzg1NjAz", - "avatar_url": "https://avatars.githubusercontent.com/u/49785603?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gustavfrid", - "html_url": "https://github.com/gustavfrid", - "followers_url": "https://api.github.com/users/gustavfrid/followers", - "following_url": "https://api.github.com/users/gustavfrid/following{/other_user}", - "gists_url": "https://api.github.com/users/gustavfrid/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gustavfrid/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gustavfrid/subscriptions", - "organizations_url": "https://api.github.com/users/gustavfrid/orgs", - "repos_url": "https://api.github.com/users/gustavfrid/repos", - "events_url": "https://api.github.com/users/gustavfrid/events{/privacy}", - "received_events_url": "https://api.github.com/users/gustavfrid/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 397944462, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTc5NDQ0NjI=", - "name": "project-news-site", - "full_name": "gustavfrid/project-news-site", - "private": false, - "owner": { - "login": "gustavfrid", - "id": 49785603, - "node_id": "MDQ6VXNlcjQ5Nzg1NjAz", - "avatar_url": "https://avatars.githubusercontent.com/u/49785603?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/gustavfrid", - "html_url": "https://github.com/gustavfrid", - "followers_url": "https://api.github.com/users/gustavfrid/followers", - "following_url": "https://api.github.com/users/gustavfrid/following{/other_user}", - "gists_url": "https://api.github.com/users/gustavfrid/gists{/gist_id}", - "starred_url": "https://api.github.com/users/gustavfrid/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/gustavfrid/subscriptions", - "organizations_url": "https://api.github.com/users/gustavfrid/orgs", - "repos_url": "https://api.github.com/users/gustavfrid/repos", - "events_url": "https://api.github.com/users/gustavfrid/events{/privacy}", - "received_events_url": "https://api.github.com/users/gustavfrid/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/gustavfrid/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/gustavfrid/project-news-site", - "forks_url": "https://api.github.com/repos/gustavfrid/project-news-site/forks", - "keys_url": "https://api.github.com/repos/gustavfrid/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/gustavfrid/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/gustavfrid/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/gustavfrid/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/gustavfrid/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/gustavfrid/project-news-site/events", - "assignees_url": "https://api.github.com/repos/gustavfrid/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/gustavfrid/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/gustavfrid/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/gustavfrid/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/gustavfrid/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/gustavfrid/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/gustavfrid/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/gustavfrid/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/gustavfrid/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/gustavfrid/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/gustavfrid/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/gustavfrid/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/gustavfrid/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/gustavfrid/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/gustavfrid/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/gustavfrid/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/gustavfrid/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/gustavfrid/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/gustavfrid/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/gustavfrid/project-news-site/merges", - "archive_url": "https://api.github.com/repos/gustavfrid/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/gustavfrid/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/gustavfrid/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/gustavfrid/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/gustavfrid/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/gustavfrid/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/gustavfrid/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/gustavfrid/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/gustavfrid/project-news-site/deployments", - "created_at": "2021-08-19T13:00:45Z", - "updated_at": "2021-08-29T07:04:30Z", - "pushed_at": "2021-08-29T07:04:27Z", - "git_url": "git://github.com/gustavfrid/project-news-site.git", - "ssh_url": "git@github.com:gustavfrid/project-news-site.git", - "clone_url": "https://github.com/gustavfrid/project-news-site.git", - "svn_url": "https://github.com/gustavfrid/project-news-site", - "homepage": null, - "size": 14379, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/208" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/208" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/208" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/208/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/208/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/208/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/515dbc36069bc7c085420d19fe0943d7bb5d4932" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/207", - "id": 721898454, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODk4NDU0", - "html_url": "https://github.com/Technigo/project-news-site/pull/207", - "diff_url": "https://github.com/Technigo/project-news-site/pull/207.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/207.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/207", - "number": 207, - "state": "open", - "locked": false, - "title": "Project news site", - "user": { - "login": "annathunberg", - "id": 83536062, - "node_id": "MDQ6VXNlcjgzNTM2MDYy", - "avatar_url": "https://avatars.githubusercontent.com/u/83536062?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/annathunberg", - "html_url": "https://github.com/annathunberg", - "followers_url": "https://api.github.com/users/annathunberg/followers", - "following_url": "https://api.github.com/users/annathunberg/following{/other_user}", - "gists_url": "https://api.github.com/users/annathunberg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/annathunberg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/annathunberg/subscriptions", - "organizations_url": "https://api.github.com/users/annathunberg/orgs", - "repos_url": "https://api.github.com/users/annathunberg/repos", - "events_url": "https://api.github.com/users/annathunberg/events{/privacy}", - "received_events_url": "https://api.github.com/users/annathunberg/received_events", - "type": "User", - "site_admin": false - }, - "body": "**Millenial by Anna Thunberg**\r\n\r\n**Struggled with:** flexbox, tried making the site using flexbox first, but started over with grid because I felt it was more logical.\r\nI had some issues with the layout (width) of my small grid boxes as well, but I'm pretty happy with it anyways!\r\n\r\n**Most poud of:** That I started early and kept going. That I was organized and commented out different parts of the code for readability (for myself). I'm proud of the process of making a clear visual idea into a real site, and the general appearance of my design.\r\n\r\nLink to my project:\r\nhttps://millenial.netlify.app/", - "created_at": "2021-08-29T06:54:06Z", - "updated_at": "2021-09-14T09:13:05Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "980049883029498c3b0a67d5abeeb2c1cec03662", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/207/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/207/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/207/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/550486de4af629bfbf2a26a7ffc28ed7186a9d33", - "head": { - "label": "annathunberg:master", - "ref": "master", - "sha": "550486de4af629bfbf2a26a7ffc28ed7186a9d33", - "user": { - "login": "annathunberg", - "id": 83536062, - "node_id": "MDQ6VXNlcjgzNTM2MDYy", - "avatar_url": "https://avatars.githubusercontent.com/u/83536062?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/annathunberg", - "html_url": "https://github.com/annathunberg", - "followers_url": "https://api.github.com/users/annathunberg/followers", - "following_url": "https://api.github.com/users/annathunberg/following{/other_user}", - "gists_url": "https://api.github.com/users/annathunberg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/annathunberg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/annathunberg/subscriptions", - "organizations_url": "https://api.github.com/users/annathunberg/orgs", - "repos_url": "https://api.github.com/users/annathunberg/repos", - "events_url": "https://api.github.com/users/annathunberg/events{/privacy}", - "received_events_url": "https://api.github.com/users/annathunberg/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399075358, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwNzUzNTg=", - "name": "project-news-site", - "full_name": "annathunberg/project-news-site", - "private": false, - "owner": { - "login": "annathunberg", - "id": 83536062, - "node_id": "MDQ6VXNlcjgzNTM2MDYy", - "avatar_url": "https://avatars.githubusercontent.com/u/83536062?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/annathunberg", - "html_url": "https://github.com/annathunberg", - "followers_url": "https://api.github.com/users/annathunberg/followers", - "following_url": "https://api.github.com/users/annathunberg/following{/other_user}", - "gists_url": "https://api.github.com/users/annathunberg/gists{/gist_id}", - "starred_url": "https://api.github.com/users/annathunberg/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/annathunberg/subscriptions", - "organizations_url": "https://api.github.com/users/annathunberg/orgs", - "repos_url": "https://api.github.com/users/annathunberg/repos", - "events_url": "https://api.github.com/users/annathunberg/events{/privacy}", - "received_events_url": "https://api.github.com/users/annathunberg/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/annathunberg/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/annathunberg/project-news-site", - "forks_url": "https://api.github.com/repos/annathunberg/project-news-site/forks", - "keys_url": "https://api.github.com/repos/annathunberg/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/annathunberg/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/annathunberg/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/annathunberg/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/annathunberg/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/annathunberg/project-news-site/events", - "assignees_url": "https://api.github.com/repos/annathunberg/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/annathunberg/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/annathunberg/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/annathunberg/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/annathunberg/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/annathunberg/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/annathunberg/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/annathunberg/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/annathunberg/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/annathunberg/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/annathunberg/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/annathunberg/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/annathunberg/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/annathunberg/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/annathunberg/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/annathunberg/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/annathunberg/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/annathunberg/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/annathunberg/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/annathunberg/project-news-site/merges", - "archive_url": "https://api.github.com/repos/annathunberg/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/annathunberg/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/annathunberg/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/annathunberg/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/annathunberg/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/annathunberg/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/annathunberg/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/annathunberg/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/annathunberg/project-news-site/deployments", - "created_at": "2021-08-23T11:21:37Z", - "updated_at": "2021-09-14T09:13:08Z", - "pushed_at": "2021-09-14T09:13:04Z", - "git_url": "git://github.com/annathunberg/project-news-site.git", - "ssh_url": "git@github.com:annathunberg/project-news-site.git", - "clone_url": "https://github.com/annathunberg/project-news-site.git", - "svn_url": "https://github.com/annathunberg/project-news-site", - "homepage": null, - "size": 790, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/207" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/207" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/207" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/207/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/207/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/207/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/550486de4af629bfbf2a26a7ffc28ed7186a9d33" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/206", - "id": 721860957, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODYwOTU3", - "html_url": "https://github.com/Technigo/project-news-site/pull/206", - "diff_url": "https://github.com/Technigo/project-news-site/pull/206.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/206.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/206", - "number": 206, - "state": "open", - "locked": false, - "title": "Haru Ahn- Week2 (Build a news site)", - "user": { - "login": "ruruahn", - "id": 81482699, - "node_id": "MDQ6VXNlcjgxNDgyNjk5", - "avatar_url": "https://avatars.githubusercontent.com/u/81482699?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/ruruahn", - "html_url": "https://github.com/ruruahn", - "followers_url": "https://api.github.com/users/ruruahn/followers", - "following_url": "https://api.github.com/users/ruruahn/following{/other_user}", - "gists_url": "https://api.github.com/users/ruruahn/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ruruahn/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ruruahn/subscriptions", - "organizations_url": "https://api.github.com/users/ruruahn/orgs", - "repos_url": "https://api.github.com/users/ruruahn/repos", - "events_url": "https://api.github.com/users/ruruahn/events{/privacy}", - "received_events_url": "https://api.github.com/users/ruruahn/received_events", - "type": "User", - "site_admin": false - }, - "body": "I am proud that I have actually finished the projects with minimum requirements met, given that I was having quite hard time following with Live session and explanations.\r\nThe most struggling part was to understand and get used to with hierarchies of the code system. To understand which code to hook the class code was quite difficult for me.\r\nNetflify url: https://frosty-stonebraker-0d4b63.netlify.app", - "created_at": "2021-08-28T23:44:27Z", - "updated_at": "2021-09-17T15:24:12Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "f6c9e1fd7041211e9420dba31cb0cdaf8f2ce4c5", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/206/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/206/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/206/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/15d47c06bad65184aae53676ea3bf5e73e3e1102", - "head": { - "label": "ruruahn:master", - "ref": "master", - "sha": "15d47c06bad65184aae53676ea3bf5e73e3e1102", - "user": { - "login": "ruruahn", - "id": 81482699, - "node_id": "MDQ6VXNlcjgxNDgyNjk5", - "avatar_url": "https://avatars.githubusercontent.com/u/81482699?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/ruruahn", - "html_url": "https://github.com/ruruahn", - "followers_url": "https://api.github.com/users/ruruahn/followers", - "following_url": "https://api.github.com/users/ruruahn/following{/other_user}", - "gists_url": "https://api.github.com/users/ruruahn/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ruruahn/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ruruahn/subscriptions", - "organizations_url": "https://api.github.com/users/ruruahn/orgs", - "repos_url": "https://api.github.com/users/ruruahn/repos", - "events_url": "https://api.github.com/users/ruruahn/events{/privacy}", - "received_events_url": "https://api.github.com/users/ruruahn/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399596262, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTk1OTYyNjI=", - "name": "project-news-site", - "full_name": "ruruahn/project-news-site", - "private": false, - "owner": { - "login": "ruruahn", - "id": 81482699, - "node_id": "MDQ6VXNlcjgxNDgyNjk5", - "avatar_url": "https://avatars.githubusercontent.com/u/81482699?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/ruruahn", - "html_url": "https://github.com/ruruahn", - "followers_url": "https://api.github.com/users/ruruahn/followers", - "following_url": "https://api.github.com/users/ruruahn/following{/other_user}", - "gists_url": "https://api.github.com/users/ruruahn/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ruruahn/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ruruahn/subscriptions", - "organizations_url": "https://api.github.com/users/ruruahn/orgs", - "repos_url": "https://api.github.com/users/ruruahn/repos", - "events_url": "https://api.github.com/users/ruruahn/events{/privacy}", - "received_events_url": "https://api.github.com/users/ruruahn/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/ruruahn/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/ruruahn/project-news-site", - "forks_url": "https://api.github.com/repos/ruruahn/project-news-site/forks", - "keys_url": "https://api.github.com/repos/ruruahn/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/ruruahn/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/ruruahn/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/ruruahn/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/ruruahn/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/ruruahn/project-news-site/events", - "assignees_url": "https://api.github.com/repos/ruruahn/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/ruruahn/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/ruruahn/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/ruruahn/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/ruruahn/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/ruruahn/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/ruruahn/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/ruruahn/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/ruruahn/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/ruruahn/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/ruruahn/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/ruruahn/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/ruruahn/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/ruruahn/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/ruruahn/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/ruruahn/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/ruruahn/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/ruruahn/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/ruruahn/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/ruruahn/project-news-site/merges", - "archive_url": "https://api.github.com/repos/ruruahn/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/ruruahn/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/ruruahn/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/ruruahn/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/ruruahn/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/ruruahn/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/ruruahn/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/ruruahn/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/ruruahn/project-news-site/deployments", - "created_at": "2021-08-24T20:27:24Z", - "updated_at": "2021-09-17T15:24:14Z", - "pushed_at": "2021-09-17T15:24:10Z", - "git_url": "git://github.com/ruruahn/project-news-site.git", - "ssh_url": "git@github.com:ruruahn/project-news-site.git", - "clone_url": "https://github.com/ruruahn/project-news-site.git", - "svn_url": "https://github.com/ruruahn/project-news-site", - "homepage": null, - "size": 28371, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/206" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/206" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/206" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/206/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/206/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/206/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/15d47c06bad65184aae53676ea3bf5e73e3e1102" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/205", - "id": 721855484, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODU1NDg0", - "html_url": "https://github.com/Technigo/project-news-site/pull/205", - "diff_url": "https://github.com/Technigo/project-news-site/pull/205.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/205.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/205", - "number": 205, - "state": "open", - "locked": false, - "title": "Pinar Demirel Etli news-site", - "user": { - "login": "pdetli", - "id": 74938586, - "node_id": "MDQ6VXNlcjc0OTM4NTg2", - "avatar_url": "https://avatars.githubusercontent.com/u/74938586?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/pdetli", - "html_url": "https://github.com/pdetli", - "followers_url": "https://api.github.com/users/pdetli/followers", - "following_url": "https://api.github.com/users/pdetli/following{/other_user}", - "gists_url": "https://api.github.com/users/pdetli/gists{/gist_id}", - "starred_url": "https://api.github.com/users/pdetli/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/pdetli/subscriptions", - "organizations_url": "https://api.github.com/users/pdetli/orgs", - "repos_url": "https://api.github.com/users/pdetli/repos", - "events_url": "https://api.github.com/users/pdetli/events{/privacy}", - "received_events_url": "https://api.github.com/users/pdetli/received_events", - "type": "User", - "site_admin": false - }, - "body": "Link to deployed project on Netlify: https://wonderful-spence-2f1e32.netlify.app\r\n\r\nI learned many new concepts like flex box, grid and “mobile first” approach and managed to use them on my first site that I am most proud of.\r\n\r\nThe most challenging part was the responsive navigation bar, especially for tablet-sized devices. \r\n", - "created_at": "2021-08-28T22:41:46Z", - "updated_at": "2021-08-30T20:24:02Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "3f1937e0ea08616650eeaa9865a2ef457b277192", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/205/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/205/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/205/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/b79c790bd246ef5b66fb8994d12352a146150c30", - "head": { - "label": "pdetli:master", - "ref": "master", - "sha": "b79c790bd246ef5b66fb8994d12352a146150c30", - "user": { - "login": "pdetli", - "id": 74938586, - "node_id": "MDQ6VXNlcjc0OTM4NTg2", - "avatar_url": "https://avatars.githubusercontent.com/u/74938586?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/pdetli", - "html_url": "https://github.com/pdetli", - "followers_url": "https://api.github.com/users/pdetli/followers", - "following_url": "https://api.github.com/users/pdetli/following{/other_user}", - "gists_url": "https://api.github.com/users/pdetli/gists{/gist_id}", - "starred_url": "https://api.github.com/users/pdetli/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/pdetli/subscriptions", - "organizations_url": "https://api.github.com/users/pdetli/orgs", - "repos_url": "https://api.github.com/users/pdetli/repos", - "events_url": "https://api.github.com/users/pdetli/events{/privacy}", - "received_events_url": "https://api.github.com/users/pdetli/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398536165, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg1MzYxNjU=", - "name": "project-news-site", - "full_name": "pdetli/project-news-site", - "private": false, - "owner": { - "login": "pdetli", - "id": 74938586, - "node_id": "MDQ6VXNlcjc0OTM4NTg2", - "avatar_url": "https://avatars.githubusercontent.com/u/74938586?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/pdetli", - "html_url": "https://github.com/pdetli", - "followers_url": "https://api.github.com/users/pdetli/followers", - "following_url": "https://api.github.com/users/pdetli/following{/other_user}", - "gists_url": "https://api.github.com/users/pdetli/gists{/gist_id}", - "starred_url": "https://api.github.com/users/pdetli/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/pdetli/subscriptions", - "organizations_url": "https://api.github.com/users/pdetli/orgs", - "repos_url": "https://api.github.com/users/pdetli/repos", - "events_url": "https://api.github.com/users/pdetli/events{/privacy}", - "received_events_url": "https://api.github.com/users/pdetli/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/pdetli/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/pdetli/project-news-site", - "forks_url": "https://api.github.com/repos/pdetli/project-news-site/forks", - "keys_url": "https://api.github.com/repos/pdetli/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/pdetli/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/pdetli/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/pdetli/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/pdetli/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/pdetli/project-news-site/events", - "assignees_url": "https://api.github.com/repos/pdetli/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/pdetli/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/pdetli/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/pdetli/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/pdetli/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/pdetli/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/pdetli/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/pdetli/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/pdetli/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/pdetli/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/pdetli/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/pdetli/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/pdetli/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/pdetli/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/pdetli/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/pdetli/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/pdetli/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/pdetli/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/pdetli/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/pdetli/project-news-site/merges", - "archive_url": "https://api.github.com/repos/pdetli/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/pdetli/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/pdetli/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/pdetli/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/pdetli/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/pdetli/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/pdetli/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/pdetli/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/pdetli/project-news-site/deployments", - "created_at": "2021-08-21T11:05:49Z", - "updated_at": "2021-08-30T11:18:00Z", - "pushed_at": "2021-08-30T11:17:57Z", - "git_url": "git://github.com/pdetli/project-news-site.git", - "ssh_url": "git@github.com:pdetli/project-news-site.git", - "clone_url": "https://github.com/pdetli/project-news-site.git", - "svn_url": "https://github.com/pdetli/project-news-site", - "homepage": null, - "size": 28776, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/205" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/205" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/205" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/205/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/205/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/205/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/b79c790bd246ef5b66fb8994d12352a146150c30" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/204", - "id": 721852062, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODUyMDYy", - "html_url": "https://github.com/Technigo/project-news-site/pull/204", - "diff_url": "https://github.com/Technigo/project-news-site/pull/204.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/204.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/204", - "number": 204, - "state": "open", - "locked": false, - "title": " Sabrina Zancotti project week 2 ", - "user": { - "login": "Zancotti", - "id": 83360973, - "node_id": "MDQ6VXNlcjgzMzYwOTcz", - "avatar_url": "https://avatars.githubusercontent.com/u/83360973?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Zancotti", - "html_url": "https://github.com/Zancotti", - "followers_url": "https://api.github.com/users/Zancotti/followers", - "following_url": "https://api.github.com/users/Zancotti/following{/other_user}", - "gists_url": "https://api.github.com/users/Zancotti/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Zancotti/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Zancotti/subscriptions", - "organizations_url": "https://api.github.com/users/Zancotti/orgs", - "repos_url": "https://api.github.com/users/Zancotti/repos", - "events_url": "https://api.github.com/users/Zancotti/events{/privacy}", - "received_events_url": "https://api.github.com/users/Zancotti/received_events", - "type": "User", - "site_admin": false - }, - "body": "Netlify link: https://zancotti-news.netlify.app/\r\n\r\nIm proud of the fact that i succeeded with makeing the whole header for all three medias with just adapting the css for them. It took some hours to understand how to do it without haveing to change in the html. It was also the biggest struggle i had codewise. Another struggle has been me being to eager to get into the codeing so i forgot to plan the project. I think I lost some hours from that, but i learned a lot by doing it that way so not regretting it =D", - "created_at": "2021-08-28T22:05:17Z", - "updated_at": "2021-09-01T07:45:01Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "032d4ab4c3fa31860c65a3651d7a0f82a5ae59e7", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/204/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/204/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/204/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/a5c69cf52cc6ca6c72c9339db3a51d8b22a91d7d", - "head": { - "label": "Zancotti:master", - "ref": "master", - "sha": "a5c69cf52cc6ca6c72c9339db3a51d8b22a91d7d", - "user": { - "login": "Zancotti", - "id": 83360973, - "node_id": "MDQ6VXNlcjgzMzYwOTcz", - "avatar_url": "https://avatars.githubusercontent.com/u/83360973?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Zancotti", - "html_url": "https://github.com/Zancotti", - "followers_url": "https://api.github.com/users/Zancotti/followers", - "following_url": "https://api.github.com/users/Zancotti/following{/other_user}", - "gists_url": "https://api.github.com/users/Zancotti/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Zancotti/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Zancotti/subscriptions", - "organizations_url": "https://api.github.com/users/Zancotti/orgs", - "repos_url": "https://api.github.com/users/Zancotti/repos", - "events_url": "https://api.github.com/users/Zancotti/events{/privacy}", - "received_events_url": "https://api.github.com/users/Zancotti/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 397640950, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTc2NDA5NTA=", - "name": "project-news-site", - "full_name": "Zancotti/project-news-site", - "private": false, - "owner": { - "login": "Zancotti", - "id": 83360973, - "node_id": "MDQ6VXNlcjgzMzYwOTcz", - "avatar_url": "https://avatars.githubusercontent.com/u/83360973?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Zancotti", - "html_url": "https://github.com/Zancotti", - "followers_url": "https://api.github.com/users/Zancotti/followers", - "following_url": "https://api.github.com/users/Zancotti/following{/other_user}", - "gists_url": "https://api.github.com/users/Zancotti/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Zancotti/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Zancotti/subscriptions", - "organizations_url": "https://api.github.com/users/Zancotti/orgs", - "repos_url": "https://api.github.com/users/Zancotti/repos", - "events_url": "https://api.github.com/users/Zancotti/events{/privacy}", - "received_events_url": "https://api.github.com/users/Zancotti/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Zancotti/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Zancotti/project-news-site", - "forks_url": "https://api.github.com/repos/Zancotti/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Zancotti/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Zancotti/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Zancotti/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Zancotti/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Zancotti/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Zancotti/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Zancotti/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Zancotti/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Zancotti/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Zancotti/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Zancotti/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Zancotti/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Zancotti/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Zancotti/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Zancotti/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Zancotti/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Zancotti/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Zancotti/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Zancotti/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Zancotti/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Zancotti/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Zancotti/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Zancotti/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Zancotti/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Zancotti/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Zancotti/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Zancotti/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Zancotti/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Zancotti/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Zancotti/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Zancotti/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Zancotti/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Zancotti/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Zancotti/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Zancotti/project-news-site/deployments", - "created_at": "2021-08-18T15:01:08Z", - "updated_at": "2021-09-01T07:42:54Z", - "pushed_at": "2021-09-01T07:42:51Z", - "git_url": "git://github.com/Zancotti/project-news-site.git", - "ssh_url": "git@github.com:Zancotti/project-news-site.git", - "clone_url": "https://github.com/Zancotti/project-news-site.git", - "svn_url": "https://github.com/Zancotti/project-news-site", - "homepage": null, - "size": 17301, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/204" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/204" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/204" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/204/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/204/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/204/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/a5c69cf52cc6ca6c72c9339db3a51d8b22a91d7d" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/203", - "id": 721841219, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODQxMjE5", - "html_url": "https://github.com/Technigo/project-news-site/pull/203", - "diff_url": "https://github.com/Technigo/project-news-site/pull/203.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/203.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/203", - "number": 203, - "state": "open", - "locked": false, - "title": "My first project", - "user": { - "login": "IdaAspen", - "id": 80949028, - "node_id": "MDQ6VXNlcjgwOTQ5MDI4", - "avatar_url": "https://avatars.githubusercontent.com/u/80949028?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/IdaAspen", - "html_url": "https://github.com/IdaAspen", - "followers_url": "https://api.github.com/users/IdaAspen/followers", - "following_url": "https://api.github.com/users/IdaAspen/following{/other_user}", - "gists_url": "https://api.github.com/users/IdaAspen/gists{/gist_id}", - "starred_url": "https://api.github.com/users/IdaAspen/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/IdaAspen/subscriptions", - "organizations_url": "https://api.github.com/users/IdaAspen/orgs", - "repos_url": "https://api.github.com/users/IdaAspen/repos", - "events_url": "https://api.github.com/users/IdaAspen/events{/privacy}", - "received_events_url": "https://api.github.com/users/IdaAspen/received_events", - "type": "User", - "site_admin": false - }, - "body": "It was super fun (and a bit hard to make the design and flexboxes works according to the sketch)!\r\nI am not so proud over the design and colors, but I focused on the responsiveness.\r\nLink to my deployed version: project-news-site-idaaspen.netlify.app", - "created_at": "2021-08-28T20:20:22Z", - "updated_at": "2021-09-20T13:38:14Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "9ca73a03861bd3a2104fb8fbb464e6bd01d5d1dc", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/203/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/203/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/203/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/c8cf91b2b72308f813635fd8cb4f1be36fd182c8", - "head": { - "label": "IdaAspen:master", - "ref": "master", - "sha": "c8cf91b2b72308f813635fd8cb4f1be36fd182c8", - "user": { - "login": "IdaAspen", - "id": 80949028, - "node_id": "MDQ6VXNlcjgwOTQ5MDI4", - "avatar_url": "https://avatars.githubusercontent.com/u/80949028?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/IdaAspen", - "html_url": "https://github.com/IdaAspen", - "followers_url": "https://api.github.com/users/IdaAspen/followers", - "following_url": "https://api.github.com/users/IdaAspen/following{/other_user}", - "gists_url": "https://api.github.com/users/IdaAspen/gists{/gist_id}", - "starred_url": "https://api.github.com/users/IdaAspen/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/IdaAspen/subscriptions", - "organizations_url": "https://api.github.com/users/IdaAspen/orgs", - "repos_url": "https://api.github.com/users/IdaAspen/repos", - "events_url": "https://api.github.com/users/IdaAspen/events{/privacy}", - "received_events_url": "https://api.github.com/users/IdaAspen/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398800799, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4MDA3OTk=", - "name": "project-news-site", - "full_name": "IdaAspen/project-news-site", - "private": false, - "owner": { - "login": "IdaAspen", - "id": 80949028, - "node_id": "MDQ6VXNlcjgwOTQ5MDI4", - "avatar_url": "https://avatars.githubusercontent.com/u/80949028?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/IdaAspen", - "html_url": "https://github.com/IdaAspen", - "followers_url": "https://api.github.com/users/IdaAspen/followers", - "following_url": "https://api.github.com/users/IdaAspen/following{/other_user}", - "gists_url": "https://api.github.com/users/IdaAspen/gists{/gist_id}", - "starred_url": "https://api.github.com/users/IdaAspen/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/IdaAspen/subscriptions", - "organizations_url": "https://api.github.com/users/IdaAspen/orgs", - "repos_url": "https://api.github.com/users/IdaAspen/repos", - "events_url": "https://api.github.com/users/IdaAspen/events{/privacy}", - "received_events_url": "https://api.github.com/users/IdaAspen/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/IdaAspen/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/IdaAspen/project-news-site", - "forks_url": "https://api.github.com/repos/IdaAspen/project-news-site/forks", - "keys_url": "https://api.github.com/repos/IdaAspen/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/IdaAspen/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/IdaAspen/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/IdaAspen/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/IdaAspen/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/IdaAspen/project-news-site/events", - "assignees_url": "https://api.github.com/repos/IdaAspen/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/IdaAspen/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/IdaAspen/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/IdaAspen/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/IdaAspen/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/IdaAspen/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/IdaAspen/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/IdaAspen/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/IdaAspen/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/IdaAspen/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/IdaAspen/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/IdaAspen/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/IdaAspen/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/IdaAspen/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/IdaAspen/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/IdaAspen/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/IdaAspen/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/IdaAspen/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/IdaAspen/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/IdaAspen/project-news-site/merges", - "archive_url": "https://api.github.com/repos/IdaAspen/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/IdaAspen/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/IdaAspen/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/IdaAspen/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/IdaAspen/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/IdaAspen/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/IdaAspen/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/IdaAspen/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/IdaAspen/project-news-site/deployments", - "created_at": "2021-08-22T13:01:01Z", - "updated_at": "2021-09-20T13:38:16Z", - "pushed_at": "2021-09-20T13:38:13Z", - "git_url": "git://github.com/IdaAspen/project-news-site.git", - "ssh_url": "git@github.com:IdaAspen/project-news-site.git", - "clone_url": "https://github.com/IdaAspen/project-news-site.git", - "svn_url": "https://github.com/IdaAspen/project-news-site", - "homepage": null, - "size": 6631, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/203" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/203" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/203" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/203/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/203/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/203/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/c8cf91b2b72308f813635fd8cb4f1be36fd182c8" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/202", - "id": 721839651, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODM5NjUx", - "html_url": "https://github.com/Technigo/project-news-site/pull/202", - "diff_url": "https://github.com/Technigo/project-news-site/pull/202.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/202.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/202", - "number": 202, - "state": "open", - "locked": false, - "title": "Elsa Bjelekdal week 2", - "user": { - "login": "Elsa-Johanna", - "id": 81694676, - "node_id": "MDQ6VXNlcjgxNjk0Njc2", - "avatar_url": "https://avatars.githubusercontent.com/u/81694676?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Elsa-Johanna", - "html_url": "https://github.com/Elsa-Johanna", - "followers_url": "https://api.github.com/users/Elsa-Johanna/followers", - "following_url": "https://api.github.com/users/Elsa-Johanna/following{/other_user}", - "gists_url": "https://api.github.com/users/Elsa-Johanna/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Elsa-Johanna/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Elsa-Johanna/subscriptions", - "organizations_url": "https://api.github.com/users/Elsa-Johanna/orgs", - "repos_url": "https://api.github.com/users/Elsa-Johanna/repos", - "events_url": "https://api.github.com/users/Elsa-Johanna/events{/privacy}", - "received_events_url": "https://api.github.com/users/Elsa-Johanna/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-28T20:06:15Z", - "updated_at": "2021-09-01T09:28:54Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "12b7f1e04fe6e7ed035bbca2cd9ef0570108a29f", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/202/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/202/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/202/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/313f65a897c831d2190bdd3b7f8286adf778c9ad", - "head": { - "label": "Elsa-Johanna:master", - "ref": "master", - "sha": "313f65a897c831d2190bdd3b7f8286adf778c9ad", - "user": { - "login": "Elsa-Johanna", - "id": 81694676, - "node_id": "MDQ6VXNlcjgxNjk0Njc2", - "avatar_url": "https://avatars.githubusercontent.com/u/81694676?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Elsa-Johanna", - "html_url": "https://github.com/Elsa-Johanna", - "followers_url": "https://api.github.com/users/Elsa-Johanna/followers", - "following_url": "https://api.github.com/users/Elsa-Johanna/following{/other_user}", - "gists_url": "https://api.github.com/users/Elsa-Johanna/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Elsa-Johanna/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Elsa-Johanna/subscriptions", - "organizations_url": "https://api.github.com/users/Elsa-Johanna/orgs", - "repos_url": "https://api.github.com/users/Elsa-Johanna/repos", - "events_url": "https://api.github.com/users/Elsa-Johanna/events{/privacy}", - "received_events_url": "https://api.github.com/users/Elsa-Johanna/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398988577, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg5ODg1Nzc=", - "name": "project-news-site", - "full_name": "Elsa-Johanna/project-news-site", - "private": false, - "owner": { - "login": "Elsa-Johanna", - "id": 81694676, - "node_id": "MDQ6VXNlcjgxNjk0Njc2", - "avatar_url": "https://avatars.githubusercontent.com/u/81694676?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Elsa-Johanna", - "html_url": "https://github.com/Elsa-Johanna", - "followers_url": "https://api.github.com/users/Elsa-Johanna/followers", - "following_url": "https://api.github.com/users/Elsa-Johanna/following{/other_user}", - "gists_url": "https://api.github.com/users/Elsa-Johanna/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Elsa-Johanna/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Elsa-Johanna/subscriptions", - "organizations_url": "https://api.github.com/users/Elsa-Johanna/orgs", - "repos_url": "https://api.github.com/users/Elsa-Johanna/repos", - "events_url": "https://api.github.com/users/Elsa-Johanna/events{/privacy}", - "received_events_url": "https://api.github.com/users/Elsa-Johanna/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Elsa-Johanna/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Elsa-Johanna/project-news-site", - "forks_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Elsa-Johanna/project-news-site/deployments", - "created_at": "2021-08-23T05:52:52Z", - "updated_at": "2021-08-28T20:04:51Z", - "pushed_at": "2021-08-28T20:04:49Z", - "git_url": "git://github.com/Elsa-Johanna/project-news-site.git", - "ssh_url": "git@github.com:Elsa-Johanna/project-news-site.git", - "clone_url": "https://github.com/Elsa-Johanna/project-news-site.git", - "svn_url": "https://github.com/Elsa-Johanna/project-news-site", - "homepage": null, - "size": 6124, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/202" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/202" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/202" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/202/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/202/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/202/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/313f65a897c831d2190bdd3b7f8286adf778c9ad" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/201", - "id": 721838610, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODM4NjEw", - "html_url": "https://github.com/Technigo/project-news-site/pull/201", - "diff_url": "https://github.com/Technigo/project-news-site/pull/201.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/201.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/201", - "number": 201, - "state": "open", - "locked": false, - "title": "Finished news site", - "user": { - "login": "isomoth", - "id": 24917764, - "node_id": "MDQ6VXNlcjI0OTE3NzY0", - "avatar_url": "https://avatars.githubusercontent.com/u/24917764?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/isomoth", - "html_url": "https://github.com/isomoth", - "followers_url": "https://api.github.com/users/isomoth/followers", - "following_url": "https://api.github.com/users/isomoth/following{/other_user}", - "gists_url": "https://api.github.com/users/isomoth/gists{/gist_id}", - "starred_url": "https://api.github.com/users/isomoth/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/isomoth/subscriptions", - "organizations_url": "https://api.github.com/users/isomoth/orgs", - "repos_url": "https://api.github.com/users/isomoth/repos", - "events_url": "https://api.github.com/users/isomoth/events{/privacy}", - "received_events_url": "https://api.github.com/users/isomoth/received_events", - "type": "User", - "site_admin": false - }, - "body": "Link to deployed project: https://nuntii.netlify.app/\r\n\r\nReflections: \r\n\r\n1. DEFINITELY do mobile first next time. During the sketching phase, I designed the site to be desktop-first. Then I realized mid-project that the mobile approach was way more practical. From that point on, I focused more on mobile and the responsiveness started working. \r\n2. The responsiveness of the grid for the news cards was also a challenge, and I suspect the above situation made it more complicated. I ended up doing a solution that isn't consistent between the tablet and desktop versions. (Didn't use auto-fit on desktop, but I did on tablet).\r\n3. I probably need to gather some knowledge on design later. Especially things like styling images and the visual hierarchy of objects. \r\n\r\nThings I like clarify: \r\n\r\nI used a non-semantic approach for a CTA button (class=\"cta-button read-more\") to make it behave like a link. I know that's not semantic, so in the future I'll have to look into achieving that result with pure CSS (without altering the functionality of that element). ", - "created_at": "2021-08-28T19:57:24Z", - "updated_at": "2021-08-31T07:29:59Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "394224786dc89f74ca6874aba4d5ea89869a41ac", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/201/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/201/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/201/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/557ade0746c88cec37c5123746c002187b9f37f6", - "head": { - "label": "isomoth:master", - "ref": "master", - "sha": "557ade0746c88cec37c5123746c002187b9f37f6", - "user": { - "login": "isomoth", - "id": 24917764, - "node_id": "MDQ6VXNlcjI0OTE3NzY0", - "avatar_url": "https://avatars.githubusercontent.com/u/24917764?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/isomoth", - "html_url": "https://github.com/isomoth", - "followers_url": "https://api.github.com/users/isomoth/followers", - "following_url": "https://api.github.com/users/isomoth/following{/other_user}", - "gists_url": "https://api.github.com/users/isomoth/gists{/gist_id}", - "starred_url": "https://api.github.com/users/isomoth/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/isomoth/subscriptions", - "organizations_url": "https://api.github.com/users/isomoth/orgs", - "repos_url": "https://api.github.com/users/isomoth/repos", - "events_url": "https://api.github.com/users/isomoth/events{/privacy}", - "received_events_url": "https://api.github.com/users/isomoth/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398651789, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg2NTE3ODk=", - "name": "project-news-site", - "full_name": "isomoth/project-news-site", - "private": false, - "owner": { - "login": "isomoth", - "id": 24917764, - "node_id": "MDQ6VXNlcjI0OTE3NzY0", - "avatar_url": "https://avatars.githubusercontent.com/u/24917764?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/isomoth", - "html_url": "https://github.com/isomoth", - "followers_url": "https://api.github.com/users/isomoth/followers", - "following_url": "https://api.github.com/users/isomoth/following{/other_user}", - "gists_url": "https://api.github.com/users/isomoth/gists{/gist_id}", - "starred_url": "https://api.github.com/users/isomoth/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/isomoth/subscriptions", - "organizations_url": "https://api.github.com/users/isomoth/orgs", - "repos_url": "https://api.github.com/users/isomoth/repos", - "events_url": "https://api.github.com/users/isomoth/events{/privacy}", - "received_events_url": "https://api.github.com/users/isomoth/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/isomoth/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/isomoth/project-news-site", - "forks_url": "https://api.github.com/repos/isomoth/project-news-site/forks", - "keys_url": "https://api.github.com/repos/isomoth/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/isomoth/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/isomoth/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/isomoth/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/isomoth/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/isomoth/project-news-site/events", - "assignees_url": "https://api.github.com/repos/isomoth/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/isomoth/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/isomoth/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/isomoth/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/isomoth/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/isomoth/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/isomoth/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/isomoth/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/isomoth/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/isomoth/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/isomoth/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/isomoth/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/isomoth/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/isomoth/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/isomoth/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/isomoth/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/isomoth/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/isomoth/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/isomoth/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/isomoth/project-news-site/merges", - "archive_url": "https://api.github.com/repos/isomoth/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/isomoth/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/isomoth/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/isomoth/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/isomoth/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/isomoth/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/isomoth/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/isomoth/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/isomoth/project-news-site/deployments", - "created_at": "2021-08-21T20:36:53Z", - "updated_at": "2021-08-31T07:30:01Z", - "pushed_at": "2021-08-31T07:29:58Z", - "git_url": "git://github.com/isomoth/project-news-site.git", - "ssh_url": "git@github.com:isomoth/project-news-site.git", - "clone_url": "https://github.com/isomoth/project-news-site.git", - "svn_url": "https://github.com/isomoth/project-news-site", - "homepage": null, - "size": 9853, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/201" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/201" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/201" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/201/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/201/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/201/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/557ade0746c88cec37c5123746c002187b9f37f6" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/200", - "id": 721819160, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODE5MTYw", - "html_url": "https://github.com/Technigo/project-news-site/pull/200", - "diff_url": "https://github.com/Technigo/project-news-site/pull/200.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/200.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/200", - "number": 200, - "state": "open", - "locked": false, - "title": "News site project w.2 by Lisa Pousette Blomé", - "user": { - "login": "annaester", - "id": 81302626, - "node_id": "MDQ6VXNlcjgxMzAyNjI2", - "avatar_url": "https://avatars.githubusercontent.com/u/81302626?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/annaester", - "html_url": "https://github.com/annaester", - "followers_url": "https://api.github.com/users/annaester/followers", - "following_url": "https://api.github.com/users/annaester/following{/other_user}", - "gists_url": "https://api.github.com/users/annaester/gists{/gist_id}", - "starred_url": "https://api.github.com/users/annaester/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/annaester/subscriptions", - "organizations_url": "https://api.github.com/users/annaester/orgs", - "repos_url": "https://api.github.com/users/annaester/repos", - "events_url": "https://api.github.com/users/annaester/events{/privacy}", - "received_events_url": "https://api.github.com/users/annaester/received_events", - "type": "User", - "site_admin": false - }, - "body": "https://lisapblome-w2-newssite.netlify.app/\r\n\r\n", - "created_at": "2021-08-28T17:25:00Z", - "updated_at": "2021-09-01T13:15:22Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "b15939a0d5513c63fc5e5f432b8758e48f2ffbdb", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/200/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/200/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/200/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/ff634df3d6388ffc0a2fef64b4532ec948e3b4b1", - "head": { - "label": "annaester:master", - "ref": "master", - "sha": "ff634df3d6388ffc0a2fef64b4532ec948e3b4b1", - "user": { - "login": "annaester", - "id": 81302626, - "node_id": "MDQ6VXNlcjgxMzAyNjI2", - "avatar_url": "https://avatars.githubusercontent.com/u/81302626?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/annaester", - "html_url": "https://github.com/annaester", - "followers_url": "https://api.github.com/users/annaester/followers", - "following_url": "https://api.github.com/users/annaester/following{/other_user}", - "gists_url": "https://api.github.com/users/annaester/gists{/gist_id}", - "starred_url": "https://api.github.com/users/annaester/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/annaester/subscriptions", - "organizations_url": "https://api.github.com/users/annaester/orgs", - "repos_url": "https://api.github.com/users/annaester/repos", - "events_url": "https://api.github.com/users/annaester/events{/privacy}", - "received_events_url": "https://api.github.com/users/annaester/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398831305, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg4MzEzMDU=", - "name": "project-news-site", - "full_name": "annaester/project-news-site", - "private": false, - "owner": { - "login": "annaester", - "id": 81302626, - "node_id": "MDQ6VXNlcjgxMzAyNjI2", - "avatar_url": "https://avatars.githubusercontent.com/u/81302626?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/annaester", - "html_url": "https://github.com/annaester", - "followers_url": "https://api.github.com/users/annaester/followers", - "following_url": "https://api.github.com/users/annaester/following{/other_user}", - "gists_url": "https://api.github.com/users/annaester/gists{/gist_id}", - "starred_url": "https://api.github.com/users/annaester/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/annaester/subscriptions", - "organizations_url": "https://api.github.com/users/annaester/orgs", - "repos_url": "https://api.github.com/users/annaester/repos", - "events_url": "https://api.github.com/users/annaester/events{/privacy}", - "received_events_url": "https://api.github.com/users/annaester/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/annaester/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/annaester/project-news-site", - "forks_url": "https://api.github.com/repos/annaester/project-news-site/forks", - "keys_url": "https://api.github.com/repos/annaester/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/annaester/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/annaester/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/annaester/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/annaester/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/annaester/project-news-site/events", - "assignees_url": "https://api.github.com/repos/annaester/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/annaester/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/annaester/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/annaester/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/annaester/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/annaester/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/annaester/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/annaester/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/annaester/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/annaester/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/annaester/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/annaester/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/annaester/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/annaester/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/annaester/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/annaester/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/annaester/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/annaester/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/annaester/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/annaester/project-news-site/merges", - "archive_url": "https://api.github.com/repos/annaester/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/annaester/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/annaester/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/annaester/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/annaester/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/annaester/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/annaester/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/annaester/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/annaester/project-news-site/deployments", - "created_at": "2021-08-22T15:18:27Z", - "updated_at": "2021-08-28T15:54:09Z", - "pushed_at": "2021-08-28T15:54:07Z", - "git_url": "git://github.com/annaester/project-news-site.git", - "ssh_url": "git@github.com:annaester/project-news-site.git", - "clone_url": "https://github.com/annaester/project-news-site.git", - "svn_url": "https://github.com/annaester/project-news-site", - "homepage": null, - "size": 772, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/200" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/200" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/200" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/200/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/200/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/200/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/ff634df3d6388ffc0a2fef64b4532ec948e3b4b1" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/199", - "id": 721810007, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODEwMDA3", - "html_url": "https://github.com/Technigo/project-news-site/pull/199", - "diff_url": "https://github.com/Technigo/project-news-site/pull/199.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/199.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/199", - "number": 199, - "state": "open", - "locked": false, - "title": "Artsy News", - "user": { - "login": "camekman", - "id": 84934176, - "node_id": "MDQ6VXNlcjg0OTM0MTc2", - "avatar_url": "https://avatars.githubusercontent.com/u/84934176?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/camekman", - "html_url": "https://github.com/camekman", - "followers_url": "https://api.github.com/users/camekman/followers", - "following_url": "https://api.github.com/users/camekman/following{/other_user}", - "gists_url": "https://api.github.com/users/camekman/gists{/gist_id}", - "starred_url": "https://api.github.com/users/camekman/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/camekman/subscriptions", - "organizations_url": "https://api.github.com/users/camekman/orgs", - "repos_url": "https://api.github.com/users/camekman/repos", - "events_url": "https://api.github.com/users/camekman/events{/privacy}", - "received_events_url": "https://api.github.com/users/camekman/received_events", - "type": "User", - "site_admin": false - }, - "body": "I strated by watching the tutorial videos to learn about boxmodel, grid and flexbox. I practiced the coding on my own and used figma: \" https://www.figma.com/file/k0gTTXylwhEUOFTYfsbFNS/WEEK-2---NEWS-SITE?node-id=0%3A1 \" to create a sketch for the website and the different view alternatives starting with mobile first. \r\nI think I went a bit over my head and confused myself in the code when I combine flexbox and grid layouts and struggled with positioning. I had to take a step back and decided to only use the grid to create the layout of the page. I played around with some hover effects and if I had more time I would have made the images inside the grid container in the same size when displayed in tablet and desktop view. I am proud that the site turned out pretty close to my sketch and I am proud over the hover effects. ", - "created_at": "2021-08-28T16:14:49Z", - "updated_at": "2021-09-02T08:37:08Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "728c928bb7caa8454e99f55a6974da90e93a8adc", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/199/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/199/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/199/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/fd054551af8ca50d54b76de737965f31b033b608", - "head": { - "label": "camekman:master", - "ref": "master", - "sha": "fd054551af8ca50d54b76de737965f31b033b608", - "user": { - "login": "camekman", - "id": 84934176, - "node_id": "MDQ6VXNlcjg0OTM0MTc2", - "avatar_url": "https://avatars.githubusercontent.com/u/84934176?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/camekman", - "html_url": "https://github.com/camekman", - "followers_url": "https://api.github.com/users/camekman/followers", - "following_url": "https://api.github.com/users/camekman/following{/other_user}", - "gists_url": "https://api.github.com/users/camekman/gists{/gist_id}", - "starred_url": "https://api.github.com/users/camekman/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/camekman/subscriptions", - "organizations_url": "https://api.github.com/users/camekman/orgs", - "repos_url": "https://api.github.com/users/camekman/repos", - "events_url": "https://api.github.com/users/camekman/events{/privacy}", - "received_events_url": "https://api.github.com/users/camekman/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399025366, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjUzNjY=", - "name": "project-news-site", - "full_name": "camekman/project-news-site", - "private": false, - "owner": { - "login": "camekman", - "id": 84934176, - "node_id": "MDQ6VXNlcjg0OTM0MTc2", - "avatar_url": "https://avatars.githubusercontent.com/u/84934176?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/camekman", - "html_url": "https://github.com/camekman", - "followers_url": "https://api.github.com/users/camekman/followers", - "following_url": "https://api.github.com/users/camekman/following{/other_user}", - "gists_url": "https://api.github.com/users/camekman/gists{/gist_id}", - "starred_url": "https://api.github.com/users/camekman/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/camekman/subscriptions", - "organizations_url": "https://api.github.com/users/camekman/orgs", - "repos_url": "https://api.github.com/users/camekman/repos", - "events_url": "https://api.github.com/users/camekman/events{/privacy}", - "received_events_url": "https://api.github.com/users/camekman/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/camekman/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/camekman/project-news-site", - "forks_url": "https://api.github.com/repos/camekman/project-news-site/forks", - "keys_url": "https://api.github.com/repos/camekman/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/camekman/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/camekman/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/camekman/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/camekman/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/camekman/project-news-site/events", - "assignees_url": "https://api.github.com/repos/camekman/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/camekman/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/camekman/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/camekman/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/camekman/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/camekman/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/camekman/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/camekman/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/camekman/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/camekman/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/camekman/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/camekman/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/camekman/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/camekman/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/camekman/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/camekman/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/camekman/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/camekman/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/camekman/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/camekman/project-news-site/merges", - "archive_url": "https://api.github.com/repos/camekman/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/camekman/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/camekman/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/camekman/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/camekman/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/camekman/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/camekman/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/camekman/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/camekman/project-news-site/deployments", - "created_at": "2021-08-23T08:17:37Z", - "updated_at": "2021-08-28T16:05:34Z", - "pushed_at": "2021-08-28T16:05:31Z", - "git_url": "git://github.com/camekman/project-news-site.git", - "ssh_url": "git@github.com:camekman/project-news-site.git", - "clone_url": "https://github.com/camekman/project-news-site.git", - "svn_url": "https://github.com/camekman/project-news-site", - "homepage": null, - "size": 4621, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/199" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/199" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/199" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/199/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/199/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/199/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/fd054551af8ca50d54b76de737965f31b033b608" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/198", - "id": 721803684, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxODAzNjg0", - "html_url": "https://github.com/Technigo/project-news-site/pull/198", - "diff_url": "https://github.com/Technigo/project-news-site/pull/198.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/198.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/198", - "number": 198, - "state": "open", - "locked": false, - "title": "Sofia Willebrand", - "user": { - "login": "sofiawillebrand", - "id": 82705594, - "node_id": "MDQ6VXNlcjgyNzA1NTk0", - "avatar_url": "https://avatars.githubusercontent.com/u/82705594?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/sofiawillebrand", - "html_url": "https://github.com/sofiawillebrand", - "followers_url": "https://api.github.com/users/sofiawillebrand/followers", - "following_url": "https://api.github.com/users/sofiawillebrand/following{/other_user}", - "gists_url": "https://api.github.com/users/sofiawillebrand/gists{/gist_id}", - "starred_url": "https://api.github.com/users/sofiawillebrand/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/sofiawillebrand/subscriptions", - "organizations_url": "https://api.github.com/users/sofiawillebrand/orgs", - "repos_url": "https://api.github.com/users/sofiawillebrand/repos", - "events_url": "https://api.github.com/users/sofiawillebrand/events{/privacy}", - "received_events_url": "https://api.github.com/users/sofiawillebrand/received_events", - "type": "User", - "site_admin": false - }, - "body": "Most proud of: the final layout. I am very pleased with the way it turned out, and I'm quite satisficed with my code. It might not be the cleanest, but for my first own project I feel very proud. \r\n\r\nBiggest struggles: being able to focus on one thing at a time. I found myself jumping from one thing to another without finishing the thing I started. Also, using git and github, and netlify. All the new things, in general. \r\n\r\nhttps://sofiawillebrand-week2-news-site.netlify.app/", - "created_at": "2021-08-28T15:30:23Z", - "updated_at": "2021-08-31T13:07:18Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "68792e09b06cd061105d5148a51063956d697393", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/198/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/198/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/198/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/b3a04e1f1825de742097df24fd4ac3ae15eabc77", - "head": { - "label": "sofiawillebrand:master", - "ref": "master", - "sha": "b3a04e1f1825de742097df24fd4ac3ae15eabc77", - "user": { - "login": "sofiawillebrand", - "id": 82705594, - "node_id": "MDQ6VXNlcjgyNzA1NTk0", - "avatar_url": "https://avatars.githubusercontent.com/u/82705594?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/sofiawillebrand", - "html_url": "https://github.com/sofiawillebrand", - "followers_url": "https://api.github.com/users/sofiawillebrand/followers", - "following_url": "https://api.github.com/users/sofiawillebrand/following{/other_user}", - "gists_url": "https://api.github.com/users/sofiawillebrand/gists{/gist_id}", - "starred_url": "https://api.github.com/users/sofiawillebrand/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/sofiawillebrand/subscriptions", - "organizations_url": "https://api.github.com/users/sofiawillebrand/orgs", - "repos_url": "https://api.github.com/users/sofiawillebrand/repos", - "events_url": "https://api.github.com/users/sofiawillebrand/events{/privacy}", - "received_events_url": "https://api.github.com/users/sofiawillebrand/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398794716, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg3OTQ3MTY=", - "name": "project-news-site", - "full_name": "sofiawillebrand/project-news-site", - "private": false, - "owner": { - "login": "sofiawillebrand", - "id": 82705594, - "node_id": "MDQ6VXNlcjgyNzA1NTk0", - "avatar_url": "https://avatars.githubusercontent.com/u/82705594?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/sofiawillebrand", - "html_url": "https://github.com/sofiawillebrand", - "followers_url": "https://api.github.com/users/sofiawillebrand/followers", - "following_url": "https://api.github.com/users/sofiawillebrand/following{/other_user}", - "gists_url": "https://api.github.com/users/sofiawillebrand/gists{/gist_id}", - "starred_url": "https://api.github.com/users/sofiawillebrand/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/sofiawillebrand/subscriptions", - "organizations_url": "https://api.github.com/users/sofiawillebrand/orgs", - "repos_url": "https://api.github.com/users/sofiawillebrand/repos", - "events_url": "https://api.github.com/users/sofiawillebrand/events{/privacy}", - "received_events_url": "https://api.github.com/users/sofiawillebrand/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/sofiawillebrand/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/sofiawillebrand/project-news-site", - "forks_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/forks", - "keys_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/events", - "assignees_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/merges", - "archive_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/sofiawillebrand/project-news-site/deployments", - "created_at": "2021-08-22T12:29:57Z", - "updated_at": "2021-08-28T15:17:22Z", - "pushed_at": "2021-08-28T15:17:19Z", - "git_url": "git://github.com/sofiawillebrand/project-news-site.git", - "ssh_url": "git@github.com:sofiawillebrand/project-news-site.git", - "clone_url": "https://github.com/sofiawillebrand/project-news-site.git", - "svn_url": "https://github.com/sofiawillebrand/project-news-site", - "homepage": null, - "size": 865, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/198" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/198" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/198" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/198/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/198/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/198/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/b3a04e1f1825de742097df24fd4ac3ae15eabc77" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/197", - "id": 721793444, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzkzNDQ0", - "html_url": "https://github.com/Technigo/project-news-site/pull/197", - "diff_url": "https://github.com/Technigo/project-news-site/pull/197.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/197.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/197", - "number": 197, - "state": "open", - "locked": false, - "title": "Project News Site - The Dog Magazine", - "user": { - "login": "brunsant", - "id": 80712035, - "node_id": "MDQ6VXNlcjgwNzEyMDM1", - "avatar_url": "https://avatars.githubusercontent.com/u/80712035?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/brunsant", - "html_url": "https://github.com/brunsant", - "followers_url": "https://api.github.com/users/brunsant/followers", - "following_url": "https://api.github.com/users/brunsant/following{/other_user}", - "gists_url": "https://api.github.com/users/brunsant/gists{/gist_id}", - "starred_url": "https://api.github.com/users/brunsant/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/brunsant/subscriptions", - "organizations_url": "https://api.github.com/users/brunsant/orgs", - "repos_url": "https://api.github.com/users/brunsant/repos", - "events_url": "https://api.github.com/users/brunsant/events{/privacy}", - "received_events_url": "https://api.github.com/users/brunsant/received_events", - "type": "User", - "site_admin": false - }, - "body": "https://thedogmagazine.netlify.app/\r\n\r\nLows: I had an organized plan in the beginning, but got too much excited when I started coding and got lost in a mess of different codes. I had conflicting data everywhere and decided to start again. I also had a hard time with my footer, but it was actually a problem with another element. \r\n\r\nHighs: When I decided to start again, everything worked out quite easily and I am very proud that I got over that difficult time. The site looks exactly as planned at first, with a few extra touches that made it even better.", - "created_at": "2021-08-28T14:19:25Z", - "updated_at": "2021-08-31T12:23:57Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "a3a8b4c30497e466caedf2f1e12281021f5846ff", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/197/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/197/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/197/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/971a69dec645c336a4f11a3c58a4986b8e576f5d", - "head": { - "label": "brunsant:master", - "ref": "master", - "sha": "971a69dec645c336a4f11a3c58a4986b8e576f5d", - "user": { - "login": "brunsant", - "id": 80712035, - "node_id": "MDQ6VXNlcjgwNzEyMDM1", - "avatar_url": "https://avatars.githubusercontent.com/u/80712035?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/brunsant", - "html_url": "https://github.com/brunsant", - "followers_url": "https://api.github.com/users/brunsant/followers", - "following_url": "https://api.github.com/users/brunsant/following{/other_user}", - "gists_url": "https://api.github.com/users/brunsant/gists{/gist_id}", - "starred_url": "https://api.github.com/users/brunsant/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/brunsant/subscriptions", - "organizations_url": "https://api.github.com/users/brunsant/orgs", - "repos_url": "https://api.github.com/users/brunsant/repos", - "events_url": "https://api.github.com/users/brunsant/events{/privacy}", - "received_events_url": "https://api.github.com/users/brunsant/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 397900963, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTc5MDA5NjM=", - "name": "project-news-site", - "full_name": "brunsant/project-news-site", - "private": false, - "owner": { - "login": "brunsant", - "id": 80712035, - "node_id": "MDQ6VXNlcjgwNzEyMDM1", - "avatar_url": "https://avatars.githubusercontent.com/u/80712035?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/brunsant", - "html_url": "https://github.com/brunsant", - "followers_url": "https://api.github.com/users/brunsant/followers", - "following_url": "https://api.github.com/users/brunsant/following{/other_user}", - "gists_url": "https://api.github.com/users/brunsant/gists{/gist_id}", - "starred_url": "https://api.github.com/users/brunsant/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/brunsant/subscriptions", - "organizations_url": "https://api.github.com/users/brunsant/orgs", - "repos_url": "https://api.github.com/users/brunsant/repos", - "events_url": "https://api.github.com/users/brunsant/events{/privacy}", - "received_events_url": "https://api.github.com/users/brunsant/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/brunsant/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/brunsant/project-news-site", - "forks_url": "https://api.github.com/repos/brunsant/project-news-site/forks", - "keys_url": "https://api.github.com/repos/brunsant/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/brunsant/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/brunsant/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/brunsant/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/brunsant/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/brunsant/project-news-site/events", - "assignees_url": "https://api.github.com/repos/brunsant/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/brunsant/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/brunsant/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/brunsant/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/brunsant/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/brunsant/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/brunsant/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/brunsant/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/brunsant/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/brunsant/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/brunsant/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/brunsant/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/brunsant/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/brunsant/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/brunsant/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/brunsant/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/brunsant/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/brunsant/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/brunsant/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/brunsant/project-news-site/merges", - "archive_url": "https://api.github.com/repos/brunsant/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/brunsant/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/brunsant/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/brunsant/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/brunsant/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/brunsant/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/brunsant/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/brunsant/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/brunsant/project-news-site/deployments", - "created_at": "2021-08-19T10:17:01Z", - "updated_at": "2021-08-28T13:59:37Z", - "pushed_at": "2021-08-28T13:59:34Z", - "git_url": "git://github.com/brunsant/project-news-site.git", - "ssh_url": "git@github.com:brunsant/project-news-site.git", - "clone_url": "https://github.com/brunsant/project-news-site.git", - "svn_url": "https://github.com/brunsant/project-news-site", - "homepage": null, - "size": 1462, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/197" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/197" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/197" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/197/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/197/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/197/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/971a69dec645c336a4f11a3c58a4986b8e576f5d" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/196", - "id": 721791535, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzkxNTM1", - "html_url": "https://github.com/Technigo/project-news-site/pull/196", - "diff_url": "https://github.com/Technigo/project-news-site/pull/196.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/196.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/196", - "number": 196, - "state": "open", - "locked": false, - "title": "Project News Site (Ebba)", - "user": { - "login": "ebbadelsol", - "id": 80672920, - "node_id": "MDQ6VXNlcjgwNjcyOTIw", - "avatar_url": "https://avatars.githubusercontent.com/u/80672920?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/ebbadelsol", - "html_url": "https://github.com/ebbadelsol", - "followers_url": "https://api.github.com/users/ebbadelsol/followers", - "following_url": "https://api.github.com/users/ebbadelsol/following{/other_user}", - "gists_url": "https://api.github.com/users/ebbadelsol/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ebbadelsol/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ebbadelsol/subscriptions", - "organizations_url": "https://api.github.com/users/ebbadelsol/orgs", - "repos_url": "https://api.github.com/users/ebbadelsol/repos", - "events_url": "https://api.github.com/users/ebbadelsol/events{/privacy}", - "received_events_url": "https://api.github.com/users/ebbadelsol/received_events", - "type": "User", - "site_admin": false - }, - "body": "# News Site\r\n\r\nThe assignment was to create a responsive news site that contains a header, big news section and a grid of cards with other news. On bigger desktop sized screens, there should be four cards in a row, two in a row on tablets and on mobile, there should just be one card on each row.\r\n\r\n## The problem\r\n\r\nThis is my first individual project and I am proud of what I managed to do and learn in the short amount of time.\r\n\r\nThings I struggled with was how to crop the images to the same aspect ratio without them being stretched or squished to fit and still having the images be responsive. I learned how to use “object fit: cover” and that percentages (%) refers to the parent and vh stands for viewport height and vw stands for viewport width. I also struggled with how I should name the different classes to make them clear for both me and others who looks at my code.\r\n\r\nI’ve also learned how to use CSS Grid and flexbox, how to target a child while hovering a parent, basic CSS animation and a lot more.\r\n\r\nIf I had more time I would also have added a button to the bottom of the text block that says “Read more” and make it appear while hovering the article. I would also like to have the amount of text to be responsive and automatically fill the parent but I think that requires some JavaScript which wasn’t part of the assignment. I would also like to learn how to make a hamburger menu.\r\n\r\n## View it live\r\n\r\nhttps://pensive-noyce-ed8f3b.netlify.app/\r\n", - "created_at": "2021-08-28T14:05:53Z", - "updated_at": "2021-08-31T15:51:52Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "1fb5ccfa1293dccc21632d4f547097ae7f3350dc", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/196/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/196/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/196/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/ae54bf28f83382f65ddf3edde92fe54fae03df0c", - "head": { - "label": "ebbadelsol:master", - "ref": "master", - "sha": "ae54bf28f83382f65ddf3edde92fe54fae03df0c", - "user": { - "login": "ebbadelsol", - "id": 80672920, - "node_id": "MDQ6VXNlcjgwNjcyOTIw", - "avatar_url": "https://avatars.githubusercontent.com/u/80672920?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/ebbadelsol", - "html_url": "https://github.com/ebbadelsol", - "followers_url": "https://api.github.com/users/ebbadelsol/followers", - "following_url": "https://api.github.com/users/ebbadelsol/following{/other_user}", - "gists_url": "https://api.github.com/users/ebbadelsol/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ebbadelsol/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ebbadelsol/subscriptions", - "organizations_url": "https://api.github.com/users/ebbadelsol/orgs", - "repos_url": "https://api.github.com/users/ebbadelsol/repos", - "events_url": "https://api.github.com/users/ebbadelsol/events{/privacy}", - "received_events_url": "https://api.github.com/users/ebbadelsol/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398767997, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg3Njc5OTc=", - "name": "project-news-site", - "full_name": "ebbadelsol/project-news-site", - "private": false, - "owner": { - "login": "ebbadelsol", - "id": 80672920, - "node_id": "MDQ6VXNlcjgwNjcyOTIw", - "avatar_url": "https://avatars.githubusercontent.com/u/80672920?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/ebbadelsol", - "html_url": "https://github.com/ebbadelsol", - "followers_url": "https://api.github.com/users/ebbadelsol/followers", - "following_url": "https://api.github.com/users/ebbadelsol/following{/other_user}", - "gists_url": "https://api.github.com/users/ebbadelsol/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ebbadelsol/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ebbadelsol/subscriptions", - "organizations_url": "https://api.github.com/users/ebbadelsol/orgs", - "repos_url": "https://api.github.com/users/ebbadelsol/repos", - "events_url": "https://api.github.com/users/ebbadelsol/events{/privacy}", - "received_events_url": "https://api.github.com/users/ebbadelsol/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/ebbadelsol/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/ebbadelsol/project-news-site", - "forks_url": "https://api.github.com/repos/ebbadelsol/project-news-site/forks", - "keys_url": "https://api.github.com/repos/ebbadelsol/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/ebbadelsol/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/ebbadelsol/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/ebbadelsol/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/ebbadelsol/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/ebbadelsol/project-news-site/events", - "assignees_url": "https://api.github.com/repos/ebbadelsol/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/ebbadelsol/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/ebbadelsol/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/ebbadelsol/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/ebbadelsol/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/ebbadelsol/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/ebbadelsol/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/ebbadelsol/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/ebbadelsol/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/ebbadelsol/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/ebbadelsol/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/ebbadelsol/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/ebbadelsol/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/ebbadelsol/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/ebbadelsol/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/ebbadelsol/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/ebbadelsol/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/ebbadelsol/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/ebbadelsol/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/ebbadelsol/project-news-site/merges", - "archive_url": "https://api.github.com/repos/ebbadelsol/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/ebbadelsol/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/ebbadelsol/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/ebbadelsol/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/ebbadelsol/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/ebbadelsol/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/ebbadelsol/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/ebbadelsol/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/ebbadelsol/project-news-site/deployments", - "created_at": "2021-08-22T10:06:05Z", - "updated_at": "2021-08-29T12:37:05Z", - "pushed_at": "2021-08-29T12:37:02Z", - "git_url": "git://github.com/ebbadelsol/project-news-site.git", - "ssh_url": "git@github.com:ebbadelsol/project-news-site.git", - "clone_url": "https://github.com/ebbadelsol/project-news-site.git", - "svn_url": "https://github.com/ebbadelsol/project-news-site", - "homepage": null, - "size": 808, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/196" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/196" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/196" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/196/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/196/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/196/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/ae54bf28f83382f65ddf3edde92fe54fae03df0c" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/195", - "id": 721789583, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzg5NTgz", - "html_url": "https://github.com/Technigo/project-news-site/pull/195", - "diff_url": "https://github.com/Technigo/project-news-site/pull/195.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/195.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/195", - "number": 195, - "state": "open", - "locked": false, - "title": "News Site by Elsa Carlström", - "user": { - "login": "elsisco", - "id": 83236666, - "node_id": "MDQ6VXNlcjgzMjM2NjY2", - "avatar_url": "https://avatars.githubusercontent.com/u/83236666?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/elsisco", - "html_url": "https://github.com/elsisco", - "followers_url": "https://api.github.com/users/elsisco/followers", - "following_url": "https://api.github.com/users/elsisco/following{/other_user}", - "gists_url": "https://api.github.com/users/elsisco/gists{/gist_id}", - "starred_url": "https://api.github.com/users/elsisco/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/elsisco/subscriptions", - "organizations_url": "https://api.github.com/users/elsisco/orgs", - "repos_url": "https://api.github.com/users/elsisco/repos", - "events_url": "https://api.github.com/users/elsisco/events{/privacy}", - "received_events_url": "https://api.github.com/users/elsisco/received_events", - "type": "User", - "site_admin": false - }, - "body": "Netlify link: https://tender-ramanujan-0cd571.netlify.app/\r\n\r\nI'm proud of how well the responsiveness turned out and how much I have learned this week. I struggled with positioning objects inside the news cards and in the header but towards the end of the project I feel like I understood better and could improve the code I made at the start of the project. ", - "created_at": "2021-08-28T13:51:43Z", - "updated_at": "2021-09-13T18:33:47Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "c869f60c2fc162a0b2886dad04fef6b1956d192b", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/195/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/195/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/195/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/86a9d0822618581f704791f49b0c60f9b513d60c", - "head": { - "label": "elsisco:master", - "ref": "master", - "sha": "86a9d0822618581f704791f49b0c60f9b513d60c", - "user": { - "login": "elsisco", - "id": 83236666, - "node_id": "MDQ6VXNlcjgzMjM2NjY2", - "avatar_url": "https://avatars.githubusercontent.com/u/83236666?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/elsisco", - "html_url": "https://github.com/elsisco", - "followers_url": "https://api.github.com/users/elsisco/followers", - "following_url": "https://api.github.com/users/elsisco/following{/other_user}", - "gists_url": "https://api.github.com/users/elsisco/gists{/gist_id}", - "starred_url": "https://api.github.com/users/elsisco/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/elsisco/subscriptions", - "organizations_url": "https://api.github.com/users/elsisco/orgs", - "repos_url": "https://api.github.com/users/elsisco/repos", - "events_url": "https://api.github.com/users/elsisco/events{/privacy}", - "received_events_url": "https://api.github.com/users/elsisco/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399164179, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkxNjQxNzk=", - "name": "project-news-site", - "full_name": "elsisco/project-news-site", - "private": false, - "owner": { - "login": "elsisco", - "id": 83236666, - "node_id": "MDQ6VXNlcjgzMjM2NjY2", - "avatar_url": "https://avatars.githubusercontent.com/u/83236666?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/elsisco", - "html_url": "https://github.com/elsisco", - "followers_url": "https://api.github.com/users/elsisco/followers", - "following_url": "https://api.github.com/users/elsisco/following{/other_user}", - "gists_url": "https://api.github.com/users/elsisco/gists{/gist_id}", - "starred_url": "https://api.github.com/users/elsisco/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/elsisco/subscriptions", - "organizations_url": "https://api.github.com/users/elsisco/orgs", - "repos_url": "https://api.github.com/users/elsisco/repos", - "events_url": "https://api.github.com/users/elsisco/events{/privacy}", - "received_events_url": "https://api.github.com/users/elsisco/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/elsisco/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/elsisco/project-news-site", - "forks_url": "https://api.github.com/repos/elsisco/project-news-site/forks", - "keys_url": "https://api.github.com/repos/elsisco/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/elsisco/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/elsisco/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/elsisco/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/elsisco/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/elsisco/project-news-site/events", - "assignees_url": "https://api.github.com/repos/elsisco/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/elsisco/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/elsisco/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/elsisco/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/elsisco/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/elsisco/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/elsisco/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/elsisco/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/elsisco/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/elsisco/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/elsisco/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/elsisco/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/elsisco/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/elsisco/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/elsisco/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/elsisco/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/elsisco/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/elsisco/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/elsisco/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/elsisco/project-news-site/merges", - "archive_url": "https://api.github.com/repos/elsisco/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/elsisco/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/elsisco/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/elsisco/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/elsisco/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/elsisco/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/elsisco/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/elsisco/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/elsisco/project-news-site/deployments", - "created_at": "2021-08-23T15:58:13Z", - "updated_at": "2021-09-13T18:33:49Z", - "pushed_at": "2021-09-13T18:33:45Z", - "git_url": "git://github.com/elsisco/project-news-site.git", - "ssh_url": "git@github.com:elsisco/project-news-site.git", - "clone_url": "https://github.com/elsisco/project-news-site.git", - "svn_url": "https://github.com/elsisco/project-news-site", - "homepage": null, - "size": 768, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/195" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/195" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/195" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/195/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/195/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/195/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/86a9d0822618581f704791f49b0c60f9b513d60c" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/194", - "id": 721783007, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzgzMDA3", - "html_url": "https://github.com/Technigo/project-news-site/pull/194", - "diff_url": "https://github.com/Technigo/project-news-site/pull/194.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/194.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/194", - "number": 194, - "state": "open", - "locked": false, - "title": "Kara Howes Newspaper project", - "user": { - "login": "KaraHowes", - "id": 70952682, - "node_id": "MDQ6VXNlcjcwOTUyNjgy", - "avatar_url": "https://avatars.githubusercontent.com/u/70952682?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/KaraHowes", - "html_url": "https://github.com/KaraHowes", - "followers_url": "https://api.github.com/users/KaraHowes/followers", - "following_url": "https://api.github.com/users/KaraHowes/following{/other_user}", - "gists_url": "https://api.github.com/users/KaraHowes/gists{/gist_id}", - "starred_url": "https://api.github.com/users/KaraHowes/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/KaraHowes/subscriptions", - "organizations_url": "https://api.github.com/users/KaraHowes/orgs", - "repos_url": "https://api.github.com/users/KaraHowes/repos", - "events_url": "https://api.github.com/users/KaraHowes/events{/privacy}", - "received_events_url": "https://api.github.com/users/KaraHowes/received_events", - "type": "User", - "site_admin": false - }, - "body": "Here is my second project, a newspaper site for children. I used flex box to design my page and tried to keep things relatively simple (but hopefully well-executed). \r\n\r\nI have deployed my webpage here\r\n\r\nhttps://app.netlify.com/sites/blissful-visvesvaraya-d44677/overview\r\n\r\nThank you and I hope the code is not too difficult to read!", - "created_at": "2021-08-28T13:04:06Z", - "updated_at": "2021-09-01T07:31:12Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "16512a9f6c428236f19dd6a0d22a3dc9278034b9", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/194/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/194/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/194/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/cbb476c00ef938f714ff6f8a7ba7b2a6be373f88", - "head": { - "label": "KaraHowes:master", - "ref": "master", - "sha": "cbb476c00ef938f714ff6f8a7ba7b2a6be373f88", - "user": { - "login": "KaraHowes", - "id": 70952682, - "node_id": "MDQ6VXNlcjcwOTUyNjgy", - "avatar_url": "https://avatars.githubusercontent.com/u/70952682?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/KaraHowes", - "html_url": "https://github.com/KaraHowes", - "followers_url": "https://api.github.com/users/KaraHowes/followers", - "following_url": "https://api.github.com/users/KaraHowes/following{/other_user}", - "gists_url": "https://api.github.com/users/KaraHowes/gists{/gist_id}", - "starred_url": "https://api.github.com/users/KaraHowes/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/KaraHowes/subscriptions", - "organizations_url": "https://api.github.com/users/KaraHowes/orgs", - "repos_url": "https://api.github.com/users/KaraHowes/repos", - "events_url": "https://api.github.com/users/KaraHowes/events{/privacy}", - "received_events_url": "https://api.github.com/users/KaraHowes/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398736480, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg3MzY0ODA=", - "name": "project-news-site", - "full_name": "KaraHowes/project-news-site", - "private": false, - "owner": { - "login": "KaraHowes", - "id": 70952682, - "node_id": "MDQ6VXNlcjcwOTUyNjgy", - "avatar_url": "https://avatars.githubusercontent.com/u/70952682?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/KaraHowes", - "html_url": "https://github.com/KaraHowes", - "followers_url": "https://api.github.com/users/KaraHowes/followers", - "following_url": "https://api.github.com/users/KaraHowes/following{/other_user}", - "gists_url": "https://api.github.com/users/KaraHowes/gists{/gist_id}", - "starred_url": "https://api.github.com/users/KaraHowes/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/KaraHowes/subscriptions", - "organizations_url": "https://api.github.com/users/KaraHowes/orgs", - "repos_url": "https://api.github.com/users/KaraHowes/repos", - "events_url": "https://api.github.com/users/KaraHowes/events{/privacy}", - "received_events_url": "https://api.github.com/users/KaraHowes/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/KaraHowes/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/KaraHowes/project-news-site", - "forks_url": "https://api.github.com/repos/KaraHowes/project-news-site/forks", - "keys_url": "https://api.github.com/repos/KaraHowes/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/KaraHowes/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/KaraHowes/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/KaraHowes/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/KaraHowes/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/KaraHowes/project-news-site/events", - "assignees_url": "https://api.github.com/repos/KaraHowes/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/KaraHowes/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/KaraHowes/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/KaraHowes/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/KaraHowes/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/KaraHowes/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/KaraHowes/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/KaraHowes/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/KaraHowes/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/KaraHowes/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/KaraHowes/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/KaraHowes/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/KaraHowes/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/KaraHowes/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/KaraHowes/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/KaraHowes/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/KaraHowes/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/KaraHowes/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/KaraHowes/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/KaraHowes/project-news-site/merges", - "archive_url": "https://api.github.com/repos/KaraHowes/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/KaraHowes/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/KaraHowes/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/KaraHowes/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/KaraHowes/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/KaraHowes/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/KaraHowes/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/KaraHowes/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/KaraHowes/project-news-site/deployments", - "created_at": "2021-08-22T07:06:01Z", - "updated_at": "2021-09-01T07:31:14Z", - "pushed_at": "2021-09-01T07:31:11Z", - "git_url": "git://github.com/KaraHowes/project-news-site.git", - "ssh_url": "git@github.com:KaraHowes/project-news-site.git", - "clone_url": "https://github.com/KaraHowes/project-news-site.git", - "svn_url": "https://github.com/KaraHowes/project-news-site", - "homepage": null, - "size": 17965, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/194" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/194" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/194" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/194/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/194/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/194/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/cbb476c00ef938f714ff6f8a7ba7b2a6be373f88" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/193", - "id": 721766667, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzY2NjY3", - "html_url": "https://github.com/Technigo/project-news-site/pull/193", - "diff_url": "https://github.com/Technigo/project-news-site/pull/193.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/193.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/193", - "number": 193, - "state": "open", - "locked": false, - "title": "Project news site ", - "user": { - "login": "efstasia", - "id": 83775090, - "node_id": "MDQ6VXNlcjgzNzc1MDkw", - "avatar_url": "https://avatars.githubusercontent.com/u/83775090?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/efstasia", - "html_url": "https://github.com/efstasia", - "followers_url": "https://api.github.com/users/efstasia/followers", - "following_url": "https://api.github.com/users/efstasia/following{/other_user}", - "gists_url": "https://api.github.com/users/efstasia/gists{/gist_id}", - "starred_url": "https://api.github.com/users/efstasia/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/efstasia/subscriptions", - "organizations_url": "https://api.github.com/users/efstasia/orgs", - "repos_url": "https://api.github.com/users/efstasia/repos", - "events_url": "https://api.github.com/users/efstasia/events{/privacy}", - "received_events_url": "https://api.github.com/users/efstasia/received_events", - "type": "User", - "site_admin": false - }, - "body": "https://loving-goldberg-e49bb3.netlify.app/\r\n\r\nI'm very proud of trying both grid and flexbox. I'm also very proud of the layout and the responsiveness. \r\nIn the beginning I struggled with the layout and aligning everything, but I managed to fix that by starting all over and eventually creating the webpage two times with both flexbox and grid. ", - "created_at": "2021-08-28T11:00:13Z", - "updated_at": "2021-08-31T22:13:08Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "c01d27f1b84dd6b56fb5aba2371d3d5cba581a86", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/193/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/193/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/193/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/32d6d00a45433cd301da6778e633355c1cf84d5f", - "head": { - "label": "efstasia:master", - "ref": "master", - "sha": "32d6d00a45433cd301da6778e633355c1cf84d5f", - "user": { - "login": "efstasia", - "id": 83775090, - "node_id": "MDQ6VXNlcjgzNzc1MDkw", - "avatar_url": "https://avatars.githubusercontent.com/u/83775090?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/efstasia", - "html_url": "https://github.com/efstasia", - "followers_url": "https://api.github.com/users/efstasia/followers", - "following_url": "https://api.github.com/users/efstasia/following{/other_user}", - "gists_url": "https://api.github.com/users/efstasia/gists{/gist_id}", - "starred_url": "https://api.github.com/users/efstasia/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/efstasia/subscriptions", - "organizations_url": "https://api.github.com/users/efstasia/orgs", - "repos_url": "https://api.github.com/users/efstasia/repos", - "events_url": "https://api.github.com/users/efstasia/events{/privacy}", - "received_events_url": "https://api.github.com/users/efstasia/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 397887646, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTc4ODc2NDY=", - "name": "project-news-site", - "full_name": "efstasia/project-news-site", - "private": false, - "owner": { - "login": "efstasia", - "id": 83775090, - "node_id": "MDQ6VXNlcjgzNzc1MDkw", - "avatar_url": "https://avatars.githubusercontent.com/u/83775090?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/efstasia", - "html_url": "https://github.com/efstasia", - "followers_url": "https://api.github.com/users/efstasia/followers", - "following_url": "https://api.github.com/users/efstasia/following{/other_user}", - "gists_url": "https://api.github.com/users/efstasia/gists{/gist_id}", - "starred_url": "https://api.github.com/users/efstasia/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/efstasia/subscriptions", - "organizations_url": "https://api.github.com/users/efstasia/orgs", - "repos_url": "https://api.github.com/users/efstasia/repos", - "events_url": "https://api.github.com/users/efstasia/events{/privacy}", - "received_events_url": "https://api.github.com/users/efstasia/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/efstasia/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/efstasia/project-news-site", - "forks_url": "https://api.github.com/repos/efstasia/project-news-site/forks", - "keys_url": "https://api.github.com/repos/efstasia/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/efstasia/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/efstasia/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/efstasia/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/efstasia/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/efstasia/project-news-site/events", - "assignees_url": "https://api.github.com/repos/efstasia/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/efstasia/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/efstasia/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/efstasia/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/efstasia/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/efstasia/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/efstasia/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/efstasia/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/efstasia/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/efstasia/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/efstasia/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/efstasia/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/efstasia/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/efstasia/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/efstasia/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/efstasia/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/efstasia/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/efstasia/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/efstasia/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/efstasia/project-news-site/merges", - "archive_url": "https://api.github.com/repos/efstasia/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/efstasia/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/efstasia/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/efstasia/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/efstasia/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/efstasia/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/efstasia/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/efstasia/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/efstasia/project-news-site/deployments", - "created_at": "2021-08-19T09:27:29Z", - "updated_at": "2021-08-31T22:10:24Z", - "pushed_at": "2021-08-31T22:10:21Z", - "git_url": "git://github.com/efstasia/project-news-site.git", - "ssh_url": "git@github.com:efstasia/project-news-site.git", - "clone_url": "https://github.com/efstasia/project-news-site.git", - "svn_url": "https://github.com/efstasia/project-news-site", - "homepage": null, - "size": 4102, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/193" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/193" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/193" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/193/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/193/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/193/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/32d6d00a45433cd301da6778e633355c1cf84d5f" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/192", - "id": 721762841, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzYyODQx", - "html_url": "https://github.com/Technigo/project-news-site/pull/192", - "diff_url": "https://github.com/Technigo/project-news-site/pull/192.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/192.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/192", - "number": 192, - "state": "open", - "locked": false, - "title": "Project 2, responsive newssite.", - "user": { - "login": "hejmaria", - "id": 81552130, - "node_id": "MDQ6VXNlcjgxNTUyMTMw", - "avatar_url": "https://avatars.githubusercontent.com/u/81552130?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/hejmaria", - "html_url": "https://github.com/hejmaria", - "followers_url": "https://api.github.com/users/hejmaria/followers", - "following_url": "https://api.github.com/users/hejmaria/following{/other_user}", - "gists_url": "https://api.github.com/users/hejmaria/gists{/gist_id}", - "starred_url": "https://api.github.com/users/hejmaria/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/hejmaria/subscriptions", - "organizations_url": "https://api.github.com/users/hejmaria/orgs", - "repos_url": "https://api.github.com/users/hejmaria/repos", - "events_url": "https://api.github.com/users/hejmaria/events{/privacy}", - "received_events_url": "https://api.github.com/users/hejmaria/received_events", - "type": "User", - "site_admin": false - }, - "body": "My first solo project. Learned a lot and liked working mobile-first. \r\n\r\nLink to my deployed project:\r\nhttps://goofy-ride-7c0ed5.netlify.app", - "created_at": "2021-08-28T10:30:29Z", - "updated_at": "2021-08-31T10:21:52Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "22bf06864b7f13694db404d3089aecd126b9e1d9", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/192/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/192/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/192/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/86a38b16e07676ba19a1b3b8f5d591187d0bc3b2", - "head": { - "label": "hejmaria:master", - "ref": "master", - "sha": "86a38b16e07676ba19a1b3b8f5d591187d0bc3b2", - "user": { - "login": "hejmaria", - "id": 81552130, - "node_id": "MDQ6VXNlcjgxNTUyMTMw", - "avatar_url": "https://avatars.githubusercontent.com/u/81552130?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/hejmaria", - "html_url": "https://github.com/hejmaria", - "followers_url": "https://api.github.com/users/hejmaria/followers", - "following_url": "https://api.github.com/users/hejmaria/following{/other_user}", - "gists_url": "https://api.github.com/users/hejmaria/gists{/gist_id}", - "starred_url": "https://api.github.com/users/hejmaria/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/hejmaria/subscriptions", - "organizations_url": "https://api.github.com/users/hejmaria/orgs", - "repos_url": "https://api.github.com/users/hejmaria/repos", - "events_url": "https://api.github.com/users/hejmaria/events{/privacy}", - "received_events_url": "https://api.github.com/users/hejmaria/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399456917, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTk0NTY5MTc=", - "name": "project-news-site", - "full_name": "hejmaria/project-news-site", - "private": false, - "owner": { - "login": "hejmaria", - "id": 81552130, - "node_id": "MDQ6VXNlcjgxNTUyMTMw", - "avatar_url": "https://avatars.githubusercontent.com/u/81552130?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/hejmaria", - "html_url": "https://github.com/hejmaria", - "followers_url": "https://api.github.com/users/hejmaria/followers", - "following_url": "https://api.github.com/users/hejmaria/following{/other_user}", - "gists_url": "https://api.github.com/users/hejmaria/gists{/gist_id}", - "starred_url": "https://api.github.com/users/hejmaria/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/hejmaria/subscriptions", - "organizations_url": "https://api.github.com/users/hejmaria/orgs", - "repos_url": "https://api.github.com/users/hejmaria/repos", - "events_url": "https://api.github.com/users/hejmaria/events{/privacy}", - "received_events_url": "https://api.github.com/users/hejmaria/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/hejmaria/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/hejmaria/project-news-site", - "forks_url": "https://api.github.com/repos/hejmaria/project-news-site/forks", - "keys_url": "https://api.github.com/repos/hejmaria/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/hejmaria/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/hejmaria/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/hejmaria/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/hejmaria/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/hejmaria/project-news-site/events", - "assignees_url": "https://api.github.com/repos/hejmaria/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/hejmaria/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/hejmaria/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/hejmaria/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/hejmaria/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/hejmaria/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/hejmaria/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/hejmaria/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/hejmaria/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/hejmaria/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/hejmaria/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/hejmaria/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/hejmaria/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/hejmaria/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/hejmaria/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/hejmaria/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/hejmaria/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/hejmaria/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/hejmaria/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/hejmaria/project-news-site/merges", - "archive_url": "https://api.github.com/repos/hejmaria/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/hejmaria/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/hejmaria/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/hejmaria/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/hejmaria/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/hejmaria/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/hejmaria/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/hejmaria/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/hejmaria/project-news-site/deployments", - "created_at": "2021-08-24T12:29:00Z", - "updated_at": "2021-08-29T07:56:28Z", - "pushed_at": "2021-08-29T07:56:25Z", - "git_url": "git://github.com/hejmaria/project-news-site.git", - "ssh_url": "git@github.com:hejmaria/project-news-site.git", - "clone_url": "https://github.com/hejmaria/project-news-site.git", - "svn_url": "https://github.com/hejmaria/project-news-site", - "homepage": null, - "size": 2434, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/192" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/192" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/192" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/192/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/192/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/192/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/86a38b16e07676ba19a1b3b8f5d591187d0bc3b2" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/191", - "id": 721761343, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzYxMzQz", - "html_url": "https://github.com/Technigo/project-news-site/pull/191", - "diff_url": "https://github.com/Technigo/project-news-site/pull/191.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/191.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/191", - "number": 191, - "state": "open", - "locked": false, - "title": "Project News Site by Karoline Mann", - "user": { - "login": "Kaliine", - "id": 80845418, - "node_id": "MDQ6VXNlcjgwODQ1NDE4", - "avatar_url": "https://avatars.githubusercontent.com/u/80845418?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Kaliine", - "html_url": "https://github.com/Kaliine", - "followers_url": "https://api.github.com/users/Kaliine/followers", - "following_url": "https://api.github.com/users/Kaliine/following{/other_user}", - "gists_url": "https://api.github.com/users/Kaliine/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Kaliine/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Kaliine/subscriptions", - "organizations_url": "https://api.github.com/users/Kaliine/orgs", - "repos_url": "https://api.github.com/users/Kaliine/repos", - "events_url": "https://api.github.com/users/Kaliine/events{/privacy}", - "received_events_url": "https://api.github.com/users/Kaliine/received_events", - "type": "User", - "site_admin": false - }, - "body": "Had great fun with this project!", - "created_at": "2021-08-28T10:18:53Z", - "updated_at": "2021-09-08T07:42:15Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "2e4bbb6b667971830add6b330814b8d45e8d25e2", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/191/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/191/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/191/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/0ed222c98ce5a88d22b02db30e2966d601d55823", - "head": { - "label": "Kaliine:master", - "ref": "master", - "sha": "0ed222c98ce5a88d22b02db30e2966d601d55823", - "user": { - "login": "Kaliine", - "id": 80845418, - "node_id": "MDQ6VXNlcjgwODQ1NDE4", - "avatar_url": "https://avatars.githubusercontent.com/u/80845418?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Kaliine", - "html_url": "https://github.com/Kaliine", - "followers_url": "https://api.github.com/users/Kaliine/followers", - "following_url": "https://api.github.com/users/Kaliine/following{/other_user}", - "gists_url": "https://api.github.com/users/Kaliine/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Kaliine/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Kaliine/subscriptions", - "organizations_url": "https://api.github.com/users/Kaliine/orgs", - "repos_url": "https://api.github.com/users/Kaliine/repos", - "events_url": "https://api.github.com/users/Kaliine/events{/privacy}", - "received_events_url": "https://api.github.com/users/Kaliine/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398561497, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTg1NjE0OTc=", - "name": "project-news-site", - "full_name": "Kaliine/project-news-site", - "private": false, - "owner": { - "login": "Kaliine", - "id": 80845418, - "node_id": "MDQ6VXNlcjgwODQ1NDE4", - "avatar_url": "https://avatars.githubusercontent.com/u/80845418?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Kaliine", - "html_url": "https://github.com/Kaliine", - "followers_url": "https://api.github.com/users/Kaliine/followers", - "following_url": "https://api.github.com/users/Kaliine/following{/other_user}", - "gists_url": "https://api.github.com/users/Kaliine/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Kaliine/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Kaliine/subscriptions", - "organizations_url": "https://api.github.com/users/Kaliine/orgs", - "repos_url": "https://api.github.com/users/Kaliine/repos", - "events_url": "https://api.github.com/users/Kaliine/events{/privacy}", - "received_events_url": "https://api.github.com/users/Kaliine/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Kaliine/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Kaliine/project-news-site", - "forks_url": "https://api.github.com/repos/Kaliine/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Kaliine/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Kaliine/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Kaliine/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Kaliine/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Kaliine/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Kaliine/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Kaliine/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Kaliine/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Kaliine/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Kaliine/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Kaliine/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Kaliine/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Kaliine/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Kaliine/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Kaliine/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Kaliine/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Kaliine/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Kaliine/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Kaliine/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Kaliine/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Kaliine/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Kaliine/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Kaliine/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Kaliine/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Kaliine/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Kaliine/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Kaliine/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Kaliine/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Kaliine/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Kaliine/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Kaliine/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Kaliine/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Kaliine/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Kaliine/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Kaliine/project-news-site/deployments", - "created_at": "2021-08-21T13:12:59Z", - "updated_at": "2021-08-28T15:53:50Z", - "pushed_at": "2021-08-28T15:53:48Z", - "git_url": "git://github.com/Kaliine/project-news-site.git", - "ssh_url": "git@github.com:Kaliine/project-news-site.git", - "clone_url": "https://github.com/Kaliine/project-news-site.git", - "svn_url": "https://github.com/Kaliine/project-news-site", - "homepage": null, - "size": 14685, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/191" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/191" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/191" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/191/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/191/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/191/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/0ed222c98ce5a88d22b02db30e2966d601d55823" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/190", - "id": 721759812, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzU5ODEy", - "html_url": "https://github.com/Technigo/project-news-site/pull/190", - "diff_url": "https://github.com/Technigo/project-news-site/pull/190.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/190.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/190", - "number": 190, - "state": "open", - "locked": false, - "title": "Mariia Snopok - Project -News-Site ", - "user": { - "login": "MarySnopok", - "id": 83823676, - "node_id": "MDQ6VXNlcjgzODIzNjc2", - "avatar_url": "https://avatars.githubusercontent.com/u/83823676?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/MarySnopok", - "html_url": "https://github.com/MarySnopok", - "followers_url": "https://api.github.com/users/MarySnopok/followers", - "following_url": "https://api.github.com/users/MarySnopok/following{/other_user}", - "gists_url": "https://api.github.com/users/MarySnopok/gists{/gist_id}", - "starred_url": "https://api.github.com/users/MarySnopok/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/MarySnopok/subscriptions", - "organizations_url": "https://api.github.com/users/MarySnopok/orgs", - "repos_url": "https://api.github.com/users/MarySnopok/repos", - "events_url": "https://api.github.com/users/MarySnopok/events{/privacy}", - "received_events_url": "https://api.github.com/users/MarySnopok/received_events", - "type": "User", - "site_admin": false - }, - "body": "What went best : \r\nI created a scalable code that I am planning to reuse in future projects . \r\nOverall it looks good and functions as planned.\r\n\r\nWhat I learned: \r\nI picked flexboxes for this project and learned a lot about this method. I think I understood how it supposed to be implemented and next time will be able to create more structural approach to CSS styling. Or not ) depends, might be my code is not that messy : looking forward for the monthly code coaching session to uncover this mystery. )\r\nI learned about custom cursors (adorable feature:)), about transitions, checked keyframes and iframes but decided to dont overload the project and implement them next time. \r\n\r\nObstacles: \r\nThere was some issue with banner. I wanted to center it but got too tired trying. So it is responsive and centered but not perfectly centered and thats annoying. \r\nAlso I wanted to change icons color and thats how I ended up with a large piece of the html code at the end of the index.html file. You will not miss it))). I had also attached a link to the stackoverflow page ,where I found example of this solution (view the index.html). I was trying to upvote it but had a lack of karma, I will improve it next week.\r\nThe last but not the list, on a desktop view I wanted divs to be separated with some space and struggled to achieve it . So I found and implemented this approach [https://coryrylan.com/blog/css-gap-space-with-flexbox] .\r\nThats actually a way of extending and recalculating a margin of a page to create extra space.\r\n\r\nNetlify link: [https://infallible-meninsky-6fb645.netlify.app/]\r\nThis week group lab code pen link: [https://codepen.io/Maria-Snopok/pen/VwWYXYy]\r\n\r\n", - "created_at": "2021-08-28T10:07:57Z", - "updated_at": "2021-09-03T15:38:53Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "da7e29119e5b1beb4901a1e87eca3314870acbf8", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/190/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/190/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/190/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/dfbd6695a03637a1a6dcdd4e0208bfb66997cb2a", - "head": { - "label": "MarySnopok:master", - "ref": "master", - "sha": "dfbd6695a03637a1a6dcdd4e0208bfb66997cb2a", - "user": { - "login": "MarySnopok", - "id": 83823676, - "node_id": "MDQ6VXNlcjgzODIzNjc2", - "avatar_url": "https://avatars.githubusercontent.com/u/83823676?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/MarySnopok", - "html_url": "https://github.com/MarySnopok", - "followers_url": "https://api.github.com/users/MarySnopok/followers", - "following_url": "https://api.github.com/users/MarySnopok/following{/other_user}", - "gists_url": "https://api.github.com/users/MarySnopok/gists{/gist_id}", - "starred_url": "https://api.github.com/users/MarySnopok/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/MarySnopok/subscriptions", - "organizations_url": "https://api.github.com/users/MarySnopok/orgs", - "repos_url": "https://api.github.com/users/MarySnopok/repos", - "events_url": "https://api.github.com/users/MarySnopok/events{/privacy}", - "received_events_url": "https://api.github.com/users/MarySnopok/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398221337, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTgyMjEzMzc=", - "name": "project-news-site", - "full_name": "MarySnopok/project-news-site", - "private": false, - "owner": { - "login": "MarySnopok", - "id": 83823676, - "node_id": "MDQ6VXNlcjgzODIzNjc2", - "avatar_url": "https://avatars.githubusercontent.com/u/83823676?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/MarySnopok", - "html_url": "https://github.com/MarySnopok", - "followers_url": "https://api.github.com/users/MarySnopok/followers", - "following_url": "https://api.github.com/users/MarySnopok/following{/other_user}", - "gists_url": "https://api.github.com/users/MarySnopok/gists{/gist_id}", - "starred_url": "https://api.github.com/users/MarySnopok/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/MarySnopok/subscriptions", - "organizations_url": "https://api.github.com/users/MarySnopok/orgs", - "repos_url": "https://api.github.com/users/MarySnopok/repos", - "events_url": "https://api.github.com/users/MarySnopok/events{/privacy}", - "received_events_url": "https://api.github.com/users/MarySnopok/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/MarySnopok/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/MarySnopok/project-news-site", - "forks_url": "https://api.github.com/repos/MarySnopok/project-news-site/forks", - "keys_url": "https://api.github.com/repos/MarySnopok/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/MarySnopok/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/MarySnopok/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/MarySnopok/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/MarySnopok/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/MarySnopok/project-news-site/events", - "assignees_url": "https://api.github.com/repos/MarySnopok/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/MarySnopok/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/MarySnopok/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/MarySnopok/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/MarySnopok/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/MarySnopok/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/MarySnopok/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/MarySnopok/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/MarySnopok/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/MarySnopok/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/MarySnopok/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/MarySnopok/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/MarySnopok/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/MarySnopok/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/MarySnopok/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/MarySnopok/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/MarySnopok/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/MarySnopok/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/MarySnopok/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/MarySnopok/project-news-site/merges", - "archive_url": "https://api.github.com/repos/MarySnopok/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/MarySnopok/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/MarySnopok/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/MarySnopok/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/MarySnopok/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/MarySnopok/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/MarySnopok/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/MarySnopok/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/MarySnopok/project-news-site/deployments", - "created_at": "2021-08-20T09:18:55Z", - "updated_at": "2021-09-03T15:38:55Z", - "pushed_at": "2021-09-03T15:38:51Z", - "git_url": "git://github.com/MarySnopok/project-news-site.git", - "ssh_url": "git@github.com:MarySnopok/project-news-site.git", - "clone_url": "https://github.com/MarySnopok/project-news-site.git", - "svn_url": "https://github.com/MarySnopok/project-news-site", - "homepage": null, - "size": 20059, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/190" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/190" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/190" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/190/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/190/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/190/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/dfbd6695a03637a1a6dcdd4e0208bfb66997cb2a" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/189", - "id": 721757639, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNzU3NjM5", - "html_url": "https://github.com/Technigo/project-news-site/pull/189", - "diff_url": "https://github.com/Technigo/project-news-site/pull/189.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/189.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/189", - "number": 189, - "state": "open", - "locked": false, - "title": "created a landing page of a Food News Magazine", - "user": { - "login": "nama0027", - "id": 71524871, - "node_id": "MDQ6VXNlcjcxNTI0ODcx", - "avatar_url": "https://avatars.githubusercontent.com/u/71524871?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/nama0027", - "html_url": "https://github.com/nama0027", - "followers_url": "https://api.github.com/users/nama0027/followers", - "following_url": "https://api.github.com/users/nama0027/following{/other_user}", - "gists_url": "https://api.github.com/users/nama0027/gists{/gist_id}", - "starred_url": "https://api.github.com/users/nama0027/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/nama0027/subscriptions", - "organizations_url": "https://api.github.com/users/nama0027/orgs", - "repos_url": "https://api.github.com/users/nama0027/repos", - "events_url": "https://api.github.com/users/nama0027/events{/privacy}", - "received_events_url": "https://api.github.com/users/nama0027/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-28T09:53:11Z", - "updated_at": "2021-09-03T10:47:41Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "3e33d39a379abcc684d6244b27300a2673af3c67", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/189/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/189/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/189/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/e89b4eafcd6c5ada054d803cc1195cb26f17fc17", - "head": { - "label": "nama0027:master", - "ref": "master", - "sha": "e89b4eafcd6c5ada054d803cc1195cb26f17fc17", - "user": { - "login": "nama0027", - "id": 71524871, - "node_id": "MDQ6VXNlcjcxNTI0ODcx", - "avatar_url": "https://avatars.githubusercontent.com/u/71524871?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/nama0027", - "html_url": "https://github.com/nama0027", - "followers_url": "https://api.github.com/users/nama0027/followers", - "following_url": "https://api.github.com/users/nama0027/following{/other_user}", - "gists_url": "https://api.github.com/users/nama0027/gists{/gist_id}", - "starred_url": "https://api.github.com/users/nama0027/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/nama0027/subscriptions", - "organizations_url": "https://api.github.com/users/nama0027/orgs", - "repos_url": "https://api.github.com/users/nama0027/repos", - "events_url": "https://api.github.com/users/nama0027/events{/privacy}", - "received_events_url": "https://api.github.com/users/nama0027/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399016044, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMTYwNDQ=", - "name": "project-news-site", - "full_name": "nama0027/project-news-site", - "private": false, - "owner": { - "login": "nama0027", - "id": 71524871, - "node_id": "MDQ6VXNlcjcxNTI0ODcx", - "avatar_url": "https://avatars.githubusercontent.com/u/71524871?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/nama0027", - "html_url": "https://github.com/nama0027", - "followers_url": "https://api.github.com/users/nama0027/followers", - "following_url": "https://api.github.com/users/nama0027/following{/other_user}", - "gists_url": "https://api.github.com/users/nama0027/gists{/gist_id}", - "starred_url": "https://api.github.com/users/nama0027/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/nama0027/subscriptions", - "organizations_url": "https://api.github.com/users/nama0027/orgs", - "repos_url": "https://api.github.com/users/nama0027/repos", - "events_url": "https://api.github.com/users/nama0027/events{/privacy}", - "received_events_url": "https://api.github.com/users/nama0027/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/nama0027/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/nama0027/project-news-site", - "forks_url": "https://api.github.com/repos/nama0027/project-news-site/forks", - "keys_url": "https://api.github.com/repos/nama0027/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/nama0027/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/nama0027/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/nama0027/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/nama0027/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/nama0027/project-news-site/events", - "assignees_url": "https://api.github.com/repos/nama0027/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/nama0027/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/nama0027/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/nama0027/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/nama0027/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/nama0027/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/nama0027/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/nama0027/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/nama0027/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/nama0027/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/nama0027/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/nama0027/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/nama0027/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/nama0027/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/nama0027/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/nama0027/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/nama0027/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/nama0027/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/nama0027/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/nama0027/project-news-site/merges", - "archive_url": "https://api.github.com/repos/nama0027/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/nama0027/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/nama0027/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/nama0027/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/nama0027/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/nama0027/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/nama0027/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/nama0027/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/nama0027/project-news-site/deployments", - "created_at": "2021-08-23T07:44:12Z", - "updated_at": "2021-08-28T09:40:53Z", - "pushed_at": "2021-08-28T09:40:51Z", - "git_url": "git://github.com/nama0027/project-news-site.git", - "ssh_url": "git@github.com:nama0027/project-news-site.git", - "clone_url": "https://github.com/nama0027/project-news-site.git", - "svn_url": "https://github.com/nama0027/project-news-site", - "homepage": null, - "size": 2575, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/189" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/189" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/189" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/189/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/189/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/189/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/e89b4eafcd6c5ada054d803cc1195cb26f17fc17" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/188", - "id": 721572978, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNTcyOTc4", - "html_url": "https://github.com/Technigo/project-news-site/pull/188", - "diff_url": "https://github.com/Technigo/project-news-site/pull/188.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/188.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/188", - "number": 188, - "state": "open", - "locked": false, - "title": "Patrik Mattsson - project 2: News Site", - "user": { - "login": "Mattsson717", - "id": 83518778, - "node_id": "MDQ6VXNlcjgzNTE4Nzc4", - "avatar_url": "https://avatars.githubusercontent.com/u/83518778?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Mattsson717", - "html_url": "https://github.com/Mattsson717", - "followers_url": "https://api.github.com/users/Mattsson717/followers", - "following_url": "https://api.github.com/users/Mattsson717/following{/other_user}", - "gists_url": "https://api.github.com/users/Mattsson717/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Mattsson717/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Mattsson717/subscriptions", - "organizations_url": "https://api.github.com/users/Mattsson717/orgs", - "repos_url": "https://api.github.com/users/Mattsson717/repos", - "events_url": "https://api.github.com/users/Mattsson717/events{/privacy}", - "received_events_url": "https://api.github.com/users/Mattsson717/received_events", - "type": "User", - "site_admin": false - }, - "body": "Im most proud of making it responsive. \r\nI struggled with understanding flexbox and grid, what tags to use and when.\r\nNelify link:\r\nhttps://nostalgic-fermat-8c63eb.netlify.app/\r\n", - "created_at": "2021-08-27T19:45:12Z", - "updated_at": "2021-09-05T08:59:13Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "1b1ee8079195868a20c58c4638ebd23179bbb97a", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/188/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/188/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/188/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/b15ac743c4bf2ce084aebd4c5e5147ad78b86e77", - "head": { - "label": "Mattsson717:master", - "ref": "master", - "sha": "b15ac743c4bf2ce084aebd4c5e5147ad78b86e77", - "user": { - "login": "Mattsson717", - "id": 83518778, - "node_id": "MDQ6VXNlcjgzNTE4Nzc4", - "avatar_url": "https://avatars.githubusercontent.com/u/83518778?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Mattsson717", - "html_url": "https://github.com/Mattsson717", - "followers_url": "https://api.github.com/users/Mattsson717/followers", - "following_url": "https://api.github.com/users/Mattsson717/following{/other_user}", - "gists_url": "https://api.github.com/users/Mattsson717/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Mattsson717/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Mattsson717/subscriptions", - "organizations_url": "https://api.github.com/users/Mattsson717/orgs", - "repos_url": "https://api.github.com/users/Mattsson717/repos", - "events_url": "https://api.github.com/users/Mattsson717/events{/privacy}", - "received_events_url": "https://api.github.com/users/Mattsson717/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 397890831, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTc4OTA4MzE=", - "name": "project-news-site", - "full_name": "Mattsson717/project-news-site", - "private": false, - "owner": { - "login": "Mattsson717", - "id": 83518778, - "node_id": "MDQ6VXNlcjgzNTE4Nzc4", - "avatar_url": "https://avatars.githubusercontent.com/u/83518778?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Mattsson717", - "html_url": "https://github.com/Mattsson717", - "followers_url": "https://api.github.com/users/Mattsson717/followers", - "following_url": "https://api.github.com/users/Mattsson717/following{/other_user}", - "gists_url": "https://api.github.com/users/Mattsson717/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Mattsson717/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Mattsson717/subscriptions", - "organizations_url": "https://api.github.com/users/Mattsson717/orgs", - "repos_url": "https://api.github.com/users/Mattsson717/repos", - "events_url": "https://api.github.com/users/Mattsson717/events{/privacy}", - "received_events_url": "https://api.github.com/users/Mattsson717/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Mattsson717/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Mattsson717/project-news-site", - "forks_url": "https://api.github.com/repos/Mattsson717/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Mattsson717/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Mattsson717/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Mattsson717/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Mattsson717/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Mattsson717/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Mattsson717/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Mattsson717/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Mattsson717/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Mattsson717/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Mattsson717/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Mattsson717/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Mattsson717/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Mattsson717/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Mattsson717/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Mattsson717/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Mattsson717/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Mattsson717/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Mattsson717/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Mattsson717/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Mattsson717/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Mattsson717/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Mattsson717/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Mattsson717/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Mattsson717/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Mattsson717/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Mattsson717/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Mattsson717/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Mattsson717/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Mattsson717/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Mattsson717/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Mattsson717/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Mattsson717/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Mattsson717/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Mattsson717/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Mattsson717/project-news-site/deployments", - "created_at": "2021-08-19T09:39:03Z", - "updated_at": "2021-08-27T19:33:24Z", - "pushed_at": "2021-08-27T19:33:21Z", - "git_url": "git://github.com/Mattsson717/project-news-site.git", - "ssh_url": "git@github.com:Mattsson717/project-news-site.git", - "clone_url": "https://github.com/Mattsson717/project-news-site.git", - "svn_url": "https://github.com/Mattsson717/project-news-site", - "homepage": null, - "size": 851, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/188" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/188" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/188" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/188/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/188/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/188/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/b15ac743c4bf2ce084aebd4c5e5147ad78b86e77" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/187", - "id": 721400246, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxNDAwMjQ2", - "html_url": "https://github.com/Technigo/project-news-site/pull/187", - "diff_url": "https://github.com/Technigo/project-news-site/pull/187.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/187.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/187", - "number": 187, - "state": "open", - "locked": false, - "title": "Julia N 2nd week project", - "user": { - "login": "JuliaNiki", - "id": 84314805, - "node_id": "MDQ6VXNlcjg0MzE0ODA1", - "avatar_url": "https://avatars.githubusercontent.com/u/84314805?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/JuliaNiki", - "html_url": "https://github.com/JuliaNiki", - "followers_url": "https://api.github.com/users/JuliaNiki/followers", - "following_url": "https://api.github.com/users/JuliaNiki/following{/other_user}", - "gists_url": "https://api.github.com/users/JuliaNiki/gists{/gist_id}", - "starred_url": "https://api.github.com/users/JuliaNiki/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/JuliaNiki/subscriptions", - "organizations_url": "https://api.github.com/users/JuliaNiki/orgs", - "repos_url": "https://api.github.com/users/JuliaNiki/repos", - "events_url": "https://api.github.com/users/JuliaNiki/events{/privacy}", - "received_events_url": "https://api.github.com/users/JuliaNiki/received_events", - "type": "User", - "site_admin": false - }, - "body": "Link to my deployed version: https://vegan-news.netlify.app \r\n\r\nThis week's project turned out a great possibility of learning for me and getting more familiar with layouts, responsive design, hovering effects and trying to make a clean and clear code.\r\nIf I had more time, I would also experiment with replacing images on different screens and adding one more section after small news to implement a grid layout to try another way of styling a page, otherwise I am happy with my progress and the result I achieved. \r\n", - "created_at": "2021-08-27T14:53:53Z", - "updated_at": "2021-08-27T14:53:53Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "88af88b79dc37e2adb9c7590759eea6c9841a86f", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/187/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/187/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/187/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/77e660a18a08190e1bcbfe7e672addf916581864", - "head": { - "label": "JuliaNiki:master", - "ref": "master", - "sha": "77e660a18a08190e1bcbfe7e672addf916581864", - "user": { - "login": "JuliaNiki", - "id": 84314805, - "node_id": "MDQ6VXNlcjg0MzE0ODA1", - "avatar_url": "https://avatars.githubusercontent.com/u/84314805?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/JuliaNiki", - "html_url": "https://github.com/JuliaNiki", - "followers_url": "https://api.github.com/users/JuliaNiki/followers", - "following_url": "https://api.github.com/users/JuliaNiki/following{/other_user}", - "gists_url": "https://api.github.com/users/JuliaNiki/gists{/gist_id}", - "starred_url": "https://api.github.com/users/JuliaNiki/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/JuliaNiki/subscriptions", - "organizations_url": "https://api.github.com/users/JuliaNiki/orgs", - "repos_url": "https://api.github.com/users/JuliaNiki/repos", - "events_url": "https://api.github.com/users/JuliaNiki/events{/privacy}", - "received_events_url": "https://api.github.com/users/JuliaNiki/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398284556, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTgyODQ1NTY=", - "name": "project-news-site", - "full_name": "JuliaNiki/project-news-site", - "private": false, - "owner": { - "login": "JuliaNiki", - "id": 84314805, - "node_id": "MDQ6VXNlcjg0MzE0ODA1", - "avatar_url": "https://avatars.githubusercontent.com/u/84314805?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/JuliaNiki", - "html_url": "https://github.com/JuliaNiki", - "followers_url": "https://api.github.com/users/JuliaNiki/followers", - "following_url": "https://api.github.com/users/JuliaNiki/following{/other_user}", - "gists_url": "https://api.github.com/users/JuliaNiki/gists{/gist_id}", - "starred_url": "https://api.github.com/users/JuliaNiki/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/JuliaNiki/subscriptions", - "organizations_url": "https://api.github.com/users/JuliaNiki/orgs", - "repos_url": "https://api.github.com/users/JuliaNiki/repos", - "events_url": "https://api.github.com/users/JuliaNiki/events{/privacy}", - "received_events_url": "https://api.github.com/users/JuliaNiki/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/JuliaNiki/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/JuliaNiki/project-news-site", - "forks_url": "https://api.github.com/repos/JuliaNiki/project-news-site/forks", - "keys_url": "https://api.github.com/repos/JuliaNiki/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/JuliaNiki/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/JuliaNiki/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/JuliaNiki/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/JuliaNiki/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/JuliaNiki/project-news-site/events", - "assignees_url": "https://api.github.com/repos/JuliaNiki/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/JuliaNiki/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/JuliaNiki/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/JuliaNiki/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/JuliaNiki/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/JuliaNiki/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/JuliaNiki/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/JuliaNiki/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/JuliaNiki/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/JuliaNiki/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/JuliaNiki/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/JuliaNiki/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/JuliaNiki/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/JuliaNiki/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/JuliaNiki/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/JuliaNiki/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/JuliaNiki/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/JuliaNiki/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/JuliaNiki/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/JuliaNiki/project-news-site/merges", - "archive_url": "https://api.github.com/repos/JuliaNiki/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/JuliaNiki/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/JuliaNiki/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/JuliaNiki/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/JuliaNiki/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/JuliaNiki/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/JuliaNiki/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/JuliaNiki/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/JuliaNiki/project-news-site/deployments", - "created_at": "2021-08-20T13:25:22Z", - "updated_at": "2021-08-27T14:28:37Z", - "pushed_at": "2021-08-27T14:28:34Z", - "git_url": "git://github.com/JuliaNiki/project-news-site.git", - "ssh_url": "git@github.com:JuliaNiki/project-news-site.git", - "clone_url": "https://github.com/JuliaNiki/project-news-site.git", - "svn_url": "https://github.com/JuliaNiki/project-news-site", - "homepage": null, - "size": 2465, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/187" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/187" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/187" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/187/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/187/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/187/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/77e660a18a08190e1bcbfe7e672addf916581864" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/186", - "id": 721388343, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMzg4MzQz", - "html_url": "https://github.com/Technigo/project-news-site/pull/186", - "diff_url": "https://github.com/Technigo/project-news-site/pull/186.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/186.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/186", - "number": 186, - "state": "open", - "locked": false, - "title": "Darya: project-news-site", - "user": { - "login": "DALA746", - "id": 79586101, - "node_id": "MDQ6VXNlcjc5NTg2MTAx", - "avatar_url": "https://avatars.githubusercontent.com/u/79586101?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/DALA746", - "html_url": "https://github.com/DALA746", - "followers_url": "https://api.github.com/users/DALA746/followers", - "following_url": "https://api.github.com/users/DALA746/following{/other_user}", - "gists_url": "https://api.github.com/users/DALA746/gists{/gist_id}", - "starred_url": "https://api.github.com/users/DALA746/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/DALA746/subscriptions", - "organizations_url": "https://api.github.com/users/DALA746/orgs", - "repos_url": "https://api.github.com/users/DALA746/repos", - "events_url": "https://api.github.com/users/DALA746/events{/privacy}", - "received_events_url": "https://api.github.com/users/DALA746/received_events", - "type": "User", - "site_admin": false - }, - "body": "Link to my deployed project: https://games-news.netlify.app/\r\n\r\nI think it went well, I need to read a documentation first before I start coding.", - "created_at": "2021-08-27T14:37:36Z", - "updated_at": "2021-09-21T18:41:19Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "190d39b5fc603d7f186c23739e6077c4fe6f2cd4", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/186/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/186/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/186/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/156bd23ed6f79ad4de4ca8c92d9765f2715a32de", - "head": { - "label": "DALA746:master", - "ref": "master", - "sha": "156bd23ed6f79ad4de4ca8c92d9765f2715a32de", - "user": { - "login": "DALA746", - "id": 79586101, - "node_id": "MDQ6VXNlcjc5NTg2MTAx", - "avatar_url": "https://avatars.githubusercontent.com/u/79586101?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/DALA746", - "html_url": "https://github.com/DALA746", - "followers_url": "https://api.github.com/users/DALA746/followers", - "following_url": "https://api.github.com/users/DALA746/following{/other_user}", - "gists_url": "https://api.github.com/users/DALA746/gists{/gist_id}", - "starred_url": "https://api.github.com/users/DALA746/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/DALA746/subscriptions", - "organizations_url": "https://api.github.com/users/DALA746/orgs", - "repos_url": "https://api.github.com/users/DALA746/repos", - "events_url": "https://api.github.com/users/DALA746/events{/privacy}", - "received_events_url": "https://api.github.com/users/DALA746/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 400499163, - "node_id": "MDEwOlJlcG9zaXRvcnk0MDA0OTkxNjM=", - "name": "project-news-site", - "full_name": "DALA746/project-news-site", - "private": false, - "owner": { - "login": "DALA746", - "id": 79586101, - "node_id": "MDQ6VXNlcjc5NTg2MTAx", - "avatar_url": "https://avatars.githubusercontent.com/u/79586101?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/DALA746", - "html_url": "https://github.com/DALA746", - "followers_url": "https://api.github.com/users/DALA746/followers", - "following_url": "https://api.github.com/users/DALA746/following{/other_user}", - "gists_url": "https://api.github.com/users/DALA746/gists{/gist_id}", - "starred_url": "https://api.github.com/users/DALA746/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/DALA746/subscriptions", - "organizations_url": "https://api.github.com/users/DALA746/orgs", - "repos_url": "https://api.github.com/users/DALA746/repos", - "events_url": "https://api.github.com/users/DALA746/events{/privacy}", - "received_events_url": "https://api.github.com/users/DALA746/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/DALA746/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/DALA746/project-news-site", - "forks_url": "https://api.github.com/repos/DALA746/project-news-site/forks", - "keys_url": "https://api.github.com/repos/DALA746/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/DALA746/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/DALA746/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/DALA746/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/DALA746/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/DALA746/project-news-site/events", - "assignees_url": "https://api.github.com/repos/DALA746/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/DALA746/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/DALA746/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/DALA746/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/DALA746/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/DALA746/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/DALA746/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/DALA746/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/DALA746/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/DALA746/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/DALA746/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/DALA746/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/DALA746/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/DALA746/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/DALA746/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/DALA746/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/DALA746/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/DALA746/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/DALA746/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/DALA746/project-news-site/merges", - "archive_url": "https://api.github.com/repos/DALA746/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/DALA746/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/DALA746/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/DALA746/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/DALA746/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/DALA746/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/DALA746/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/DALA746/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/DALA746/project-news-site/deployments", - "created_at": "2021-08-27T12:18:32Z", - "updated_at": "2021-09-21T18:41:20Z", - "pushed_at": "2021-09-21T18:41:17Z", - "git_url": "git://github.com/DALA746/project-news-site.git", - "ssh_url": "git@github.com:DALA746/project-news-site.git", - "clone_url": "https://github.com/DALA746/project-news-site.git", - "svn_url": "https://github.com/DALA746/project-news-site", - "homepage": null, - "size": 14444, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/186" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/186" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/186" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/186/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/186/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/186/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/156bd23ed6f79ad4de4ca8c92d9765f2715a32de" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/185", - "id": 721371820, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMzcxODIw", - "html_url": "https://github.com/Technigo/project-news-site/pull/185", - "diff_url": "https://github.com/Technigo/project-news-site/pull/185.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/185.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/185", - "number": 185, - "state": "open", - "locked": false, - "title": "Johanna Mannestål News site, week 2 project", - "user": { - "login": "JohannaMJ", - "id": 83920418, - "node_id": "MDQ6VXNlcjgzOTIwNDE4", - "avatar_url": "https://avatars.githubusercontent.com/u/83920418?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/JohannaMJ", - "html_url": "https://github.com/JohannaMJ", - "followers_url": "https://api.github.com/users/JohannaMJ/followers", - "following_url": "https://api.github.com/users/JohannaMJ/following{/other_user}", - "gists_url": "https://api.github.com/users/JohannaMJ/gists{/gist_id}", - "starred_url": "https://api.github.com/users/JohannaMJ/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/JohannaMJ/subscriptions", - "organizations_url": "https://api.github.com/users/JohannaMJ/orgs", - "repos_url": "https://api.github.com/users/JohannaMJ/repos", - "events_url": "https://api.github.com/users/JohannaMJ/events{/privacy}", - "received_events_url": "https://api.github.com/users/JohannaMJ/received_events", - "type": "User", - "site_admin": false - }, - "body": "Netlify link: https://affectionate-ptolemy-c240f8.netlify.app\r\n\r\nThis weeks' project has been so much fun. I'm really new to coding and I'm proud over so many things! I'm happy the way the site turned out with flex box and responsiveness, these concepts are all new to me! I'm proud over my patience and ability to google things I have no clue about and then practice, learning and using them. Also, using the Terminal makes me feel like a front end dev pro!\r\n\r\nI've struggled a lot with parts of the flex box and the responsive design, so it has been challenging but mostly fun!\r\n", - "created_at": "2021-08-27T14:15:16Z", - "updated_at": "2021-08-30T22:26:51Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "7a927a4d54ee673a2e1d763b212719baeaa632a5", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/185/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/185/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/185/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/f7887bc60f1eaaa5c5c5cea79203c5cd77df5c41", - "head": { - "label": "JohannaMJ:master", - "ref": "master", - "sha": "f7887bc60f1eaaa5c5c5cea79203c5cd77df5c41", - "user": { - "login": "JohannaMJ", - "id": 83920418, - "node_id": "MDQ6VXNlcjgzOTIwNDE4", - "avatar_url": "https://avatars.githubusercontent.com/u/83920418?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/JohannaMJ", - "html_url": "https://github.com/JohannaMJ", - "followers_url": "https://api.github.com/users/JohannaMJ/followers", - "following_url": "https://api.github.com/users/JohannaMJ/following{/other_user}", - "gists_url": "https://api.github.com/users/JohannaMJ/gists{/gist_id}", - "starred_url": "https://api.github.com/users/JohannaMJ/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/JohannaMJ/subscriptions", - "organizations_url": "https://api.github.com/users/JohannaMJ/orgs", - "repos_url": "https://api.github.com/users/JohannaMJ/repos", - "events_url": "https://api.github.com/users/JohannaMJ/events{/privacy}", - "received_events_url": "https://api.github.com/users/JohannaMJ/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399007298, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMDcyOTg=", - "name": "project-news-site", - "full_name": "JohannaMJ/project-news-site", - "private": false, - "owner": { - "login": "JohannaMJ", - "id": 83920418, - "node_id": "MDQ6VXNlcjgzOTIwNDE4", - "avatar_url": "https://avatars.githubusercontent.com/u/83920418?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/JohannaMJ", - "html_url": "https://github.com/JohannaMJ", - "followers_url": "https://api.github.com/users/JohannaMJ/followers", - "following_url": "https://api.github.com/users/JohannaMJ/following{/other_user}", - "gists_url": "https://api.github.com/users/JohannaMJ/gists{/gist_id}", - "starred_url": "https://api.github.com/users/JohannaMJ/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/JohannaMJ/subscriptions", - "organizations_url": "https://api.github.com/users/JohannaMJ/orgs", - "repos_url": "https://api.github.com/users/JohannaMJ/repos", - "events_url": "https://api.github.com/users/JohannaMJ/events{/privacy}", - "received_events_url": "https://api.github.com/users/JohannaMJ/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/JohannaMJ/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/JohannaMJ/project-news-site", - "forks_url": "https://api.github.com/repos/JohannaMJ/project-news-site/forks", - "keys_url": "https://api.github.com/repos/JohannaMJ/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/JohannaMJ/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/JohannaMJ/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/JohannaMJ/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/JohannaMJ/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/JohannaMJ/project-news-site/events", - "assignees_url": "https://api.github.com/repos/JohannaMJ/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/JohannaMJ/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/JohannaMJ/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/JohannaMJ/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/JohannaMJ/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/JohannaMJ/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/JohannaMJ/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/JohannaMJ/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/JohannaMJ/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/JohannaMJ/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/JohannaMJ/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/JohannaMJ/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/JohannaMJ/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/JohannaMJ/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/JohannaMJ/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/JohannaMJ/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/JohannaMJ/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/JohannaMJ/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/JohannaMJ/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/JohannaMJ/project-news-site/merges", - "archive_url": "https://api.github.com/repos/JohannaMJ/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/JohannaMJ/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/JohannaMJ/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/JohannaMJ/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/JohannaMJ/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/JohannaMJ/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/JohannaMJ/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/JohannaMJ/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/JohannaMJ/project-news-site/deployments", - "created_at": "2021-08-23T07:11:15Z", - "updated_at": "2021-08-27T13:00:34Z", - "pushed_at": "2021-08-27T13:00:32Z", - "git_url": "git://github.com/JohannaMJ/project-news-site.git", - "ssh_url": "git@github.com:JohannaMJ/project-news-site.git", - "clone_url": "https://github.com/JohannaMJ/project-news-site.git", - "svn_url": "https://github.com/JohannaMJ/project-news-site", - "homepage": null, - "size": 764, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/185" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/185" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/185" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/185/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/185/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/185/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/f7887bc60f1eaaa5c5c5cea79203c5cd77df5c41" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/184", - "id": 721340255, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMzQwMjU1", - "html_url": "https://github.com/Technigo/project-news-site/pull/184", - "diff_url": "https://github.com/Technigo/project-news-site/pull/184.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/184.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/184", - "number": 184, - "state": "open", - "locked": false, - "title": "Rosanna project news site", - "user": { - "login": "Rosanna86", - "id": 80784451, - "node_id": "MDQ6VXNlcjgwNzg0NDUx", - "avatar_url": "https://avatars.githubusercontent.com/u/80784451?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Rosanna86", - "html_url": "https://github.com/Rosanna86", - "followers_url": "https://api.github.com/users/Rosanna86/followers", - "following_url": "https://api.github.com/users/Rosanna86/following{/other_user}", - "gists_url": "https://api.github.com/users/Rosanna86/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Rosanna86/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Rosanna86/subscriptions", - "organizations_url": "https://api.github.com/users/Rosanna86/orgs", - "repos_url": "https://api.github.com/users/Rosanna86/repos", - "events_url": "https://api.github.com/users/Rosanna86/events{/privacy}", - "received_events_url": "https://api.github.com/users/Rosanna86/received_events", - "type": "User", - "site_admin": false - }, - "body": null, - "created_at": "2021-08-27T13:33:34Z", - "updated_at": "2021-09-01T09:11:37Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "49e22c4dae92f09437c228c3cb83e283ced3e680", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/184/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/184/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/184/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/dc4b83b9b6524b3ffd6def7c4c4ff42cc4abfb70", - "head": { - "label": "Rosanna86:master", - "ref": "master", - "sha": "dc4b83b9b6524b3ffd6def7c4c4ff42cc4abfb70", - "user": { - "login": "Rosanna86", - "id": 80784451, - "node_id": "MDQ6VXNlcjgwNzg0NDUx", - "avatar_url": "https://avatars.githubusercontent.com/u/80784451?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Rosanna86", - "html_url": "https://github.com/Rosanna86", - "followers_url": "https://api.github.com/users/Rosanna86/followers", - "following_url": "https://api.github.com/users/Rosanna86/following{/other_user}", - "gists_url": "https://api.github.com/users/Rosanna86/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Rosanna86/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Rosanna86/subscriptions", - "organizations_url": "https://api.github.com/users/Rosanna86/orgs", - "repos_url": "https://api.github.com/users/Rosanna86/repos", - "events_url": "https://api.github.com/users/Rosanna86/events{/privacy}", - "received_events_url": "https://api.github.com/users/Rosanna86/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399374393, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkzNzQzOTM=", - "name": "project-news-site", - "full_name": "Rosanna86/project-news-site", - "private": false, - "owner": { - "login": "Rosanna86", - "id": 80784451, - "node_id": "MDQ6VXNlcjgwNzg0NDUx", - "avatar_url": "https://avatars.githubusercontent.com/u/80784451?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Rosanna86", - "html_url": "https://github.com/Rosanna86", - "followers_url": "https://api.github.com/users/Rosanna86/followers", - "following_url": "https://api.github.com/users/Rosanna86/following{/other_user}", - "gists_url": "https://api.github.com/users/Rosanna86/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Rosanna86/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Rosanna86/subscriptions", - "organizations_url": "https://api.github.com/users/Rosanna86/orgs", - "repos_url": "https://api.github.com/users/Rosanna86/repos", - "events_url": "https://api.github.com/users/Rosanna86/events{/privacy}", - "received_events_url": "https://api.github.com/users/Rosanna86/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Rosanna86/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Rosanna86/project-news-site", - "forks_url": "https://api.github.com/repos/Rosanna86/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Rosanna86/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Rosanna86/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Rosanna86/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Rosanna86/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Rosanna86/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Rosanna86/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Rosanna86/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Rosanna86/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Rosanna86/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Rosanna86/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Rosanna86/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Rosanna86/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Rosanna86/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Rosanna86/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Rosanna86/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Rosanna86/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Rosanna86/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Rosanna86/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Rosanna86/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Rosanna86/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Rosanna86/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Rosanna86/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Rosanna86/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Rosanna86/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Rosanna86/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Rosanna86/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Rosanna86/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Rosanna86/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Rosanna86/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Rosanna86/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Rosanna86/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Rosanna86/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Rosanna86/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Rosanna86/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Rosanna86/project-news-site/deployments", - "created_at": "2021-08-24T07:28:21Z", - "updated_at": "2021-09-01T09:11:38Z", - "pushed_at": "2021-09-01T09:11:35Z", - "git_url": "git://github.com/Rosanna86/project-news-site.git", - "ssh_url": "git@github.com:Rosanna86/project-news-site.git", - "clone_url": "https://github.com/Rosanna86/project-news-site.git", - "svn_url": "https://github.com/Rosanna86/project-news-site", - "homepage": null, - "size": 5024, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/184" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/184" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/184" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/184/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/184/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/184/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/dc4b83b9b6524b3ffd6def7c4c4ff42cc4abfb70" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/183", - "id": 721339134, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMzM5MTM0", - "html_url": "https://github.com/Technigo/project-news-site/pull/183", - "diff_url": "https://github.com/Technigo/project-news-site/pull/183.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/183.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/183", - "number": 183, - "state": "open", - "locked": false, - "title": "Katie Wu", - "user": { - "login": "katiewu1", - "id": 83988618, - "node_id": "MDQ6VXNlcjgzOTg4NjE4", - "avatar_url": "https://avatars.githubusercontent.com/u/83988618?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/katiewu1", - "html_url": "https://github.com/katiewu1", - "followers_url": "https://api.github.com/users/katiewu1/followers", - "following_url": "https://api.github.com/users/katiewu1/following{/other_user}", - "gists_url": "https://api.github.com/users/katiewu1/gists{/gist_id}", - "starred_url": "https://api.github.com/users/katiewu1/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/katiewu1/subscriptions", - "organizations_url": "https://api.github.com/users/katiewu1/orgs", - "repos_url": "https://api.github.com/users/katiewu1/repos", - "events_url": "https://api.github.com/users/katiewu1/events{/privacy}", - "received_events_url": "https://api.github.com/users/katiewu1/received_events", - "type": "User", - "site_admin": false - }, - "body": "link to Netlify: https://newsmagazine.netlify.app/\r\n\r\nI'm most proud of combining both flex and grid (played around with flex more than grid). And managed to use position sticky to keep the navbar at the top of the page when scrolling down. \r\n\r\nI struggled with the navbar, trying to highlight some words when clicking on the links. \r\n\r\nIf we have to redo this project I want to try box-sizing and start with the mobile approach first. On this week's assignment I started with the desktop. ", - "created_at": "2021-08-27T13:31:59Z", - "updated_at": "2021-09-15T13:44:51Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "ff4c3041eb42eba63048e631f1c2899911990413", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/183/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/183/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/183/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/d2a2bbf724f611a0f68c2f6b0140604e592059dd", - "head": { - "label": "katiewu1:master", - "ref": "master", - "sha": "d2a2bbf724f611a0f68c2f6b0140604e592059dd", - "user": { - "login": "katiewu1", - "id": 83988618, - "node_id": "MDQ6VXNlcjgzOTg4NjE4", - "avatar_url": "https://avatars.githubusercontent.com/u/83988618?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/katiewu1", - "html_url": "https://github.com/katiewu1", - "followers_url": "https://api.github.com/users/katiewu1/followers", - "following_url": "https://api.github.com/users/katiewu1/following{/other_user}", - "gists_url": "https://api.github.com/users/katiewu1/gists{/gist_id}", - "starred_url": "https://api.github.com/users/katiewu1/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/katiewu1/subscriptions", - "organizations_url": "https://api.github.com/users/katiewu1/orgs", - "repos_url": "https://api.github.com/users/katiewu1/repos", - "events_url": "https://api.github.com/users/katiewu1/events{/privacy}", - "received_events_url": "https://api.github.com/users/katiewu1/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398316079, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTgzMTYwNzk=", - "name": "project-news-site", - "full_name": "katiewu1/project-news-site", - "private": false, - "owner": { - "login": "katiewu1", - "id": 83988618, - "node_id": "MDQ6VXNlcjgzOTg4NjE4", - "avatar_url": "https://avatars.githubusercontent.com/u/83988618?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/katiewu1", - "html_url": "https://github.com/katiewu1", - "followers_url": "https://api.github.com/users/katiewu1/followers", - "following_url": "https://api.github.com/users/katiewu1/following{/other_user}", - "gists_url": "https://api.github.com/users/katiewu1/gists{/gist_id}", - "starred_url": "https://api.github.com/users/katiewu1/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/katiewu1/subscriptions", - "organizations_url": "https://api.github.com/users/katiewu1/orgs", - "repos_url": "https://api.github.com/users/katiewu1/repos", - "events_url": "https://api.github.com/users/katiewu1/events{/privacy}", - "received_events_url": "https://api.github.com/users/katiewu1/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/katiewu1/project-news-site", - "description": "https://newsmagazine.netlify.app/", - "fork": true, - "url": "https://api.github.com/repos/katiewu1/project-news-site", - "forks_url": "https://api.github.com/repos/katiewu1/project-news-site/forks", - "keys_url": "https://api.github.com/repos/katiewu1/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/katiewu1/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/katiewu1/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/katiewu1/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/katiewu1/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/katiewu1/project-news-site/events", - "assignees_url": "https://api.github.com/repos/katiewu1/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/katiewu1/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/katiewu1/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/katiewu1/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/katiewu1/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/katiewu1/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/katiewu1/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/katiewu1/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/katiewu1/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/katiewu1/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/katiewu1/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/katiewu1/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/katiewu1/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/katiewu1/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/katiewu1/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/katiewu1/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/katiewu1/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/katiewu1/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/katiewu1/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/katiewu1/project-news-site/merges", - "archive_url": "https://api.github.com/repos/katiewu1/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/katiewu1/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/katiewu1/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/katiewu1/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/katiewu1/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/katiewu1/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/katiewu1/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/katiewu1/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/katiewu1/project-news-site/deployments", - "created_at": "2021-08-20T15:11:24Z", - "updated_at": "2021-09-15T13:44:54Z", - "pushed_at": "2021-09-15T13:44:50Z", - "git_url": "git://github.com/katiewu1/project-news-site.git", - "ssh_url": "git@github.com:katiewu1/project-news-site.git", - "clone_url": "https://github.com/katiewu1/project-news-site.git", - "svn_url": "https://github.com/katiewu1/project-news-site", - "homepage": "https://newsmagazine.netlify.app/", - "size": 12823, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/183" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/183" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/183" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/183/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/183/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/183/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/d2a2bbf724f611a0f68c2f6b0140604e592059dd" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/182", - "id": 721327221, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMzI3MjIx", - "html_url": "https://github.com/Technigo/project-news-site/pull/182", - "diff_url": "https://github.com/Technigo/project-news-site/pull/182.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/182.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/182", - "number": 182, - "state": "open", - "locked": false, - "title": "Helenas-news-site", - "user": { - "login": "HelenaW86", - "id": 63056581, - "node_id": "MDQ6VXNlcjYzMDU2NTgx", - "avatar_url": "https://avatars.githubusercontent.com/u/63056581?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/HelenaW86", - "html_url": "https://github.com/HelenaW86", - "followers_url": "https://api.github.com/users/HelenaW86/followers", - "following_url": "https://api.github.com/users/HelenaW86/following{/other_user}", - "gists_url": "https://api.github.com/users/HelenaW86/gists{/gist_id}", - "starred_url": "https://api.github.com/users/HelenaW86/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/HelenaW86/subscriptions", - "organizations_url": "https://api.github.com/users/HelenaW86/orgs", - "repos_url": "https://api.github.com/users/HelenaW86/repos", - "events_url": "https://api.github.com/users/HelenaW86/events{/privacy}", - "received_events_url": "https://api.github.com/users/HelenaW86/received_events", - "type": "User", - "site_admin": false - }, - "body": "Team turtle.\r\nNetlify => https://wizardly-mcnulty-7ef87c.netlify.app/\r\nTeam with Julia =>https://codepen.io/helenaw86/pen/abwORGo ", - "created_at": "2021-08-27T13:15:38Z", - "updated_at": "2021-09-16T09:02:04Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "d93d350450d5c3d97112e96f09d0f1daec32547b", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/182/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/182/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/182/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/ced5b64b885e18a5c83cd27d1f012a7976dc50a9", - "head": { - "label": "HelenaW86:master", - "ref": "master", - "sha": "ced5b64b885e18a5c83cd27d1f012a7976dc50a9", - "user": { - "login": "HelenaW86", - "id": 63056581, - "node_id": "MDQ6VXNlcjYzMDU2NTgx", - "avatar_url": "https://avatars.githubusercontent.com/u/63056581?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/HelenaW86", - "html_url": "https://github.com/HelenaW86", - "followers_url": "https://api.github.com/users/HelenaW86/followers", - "following_url": "https://api.github.com/users/HelenaW86/following{/other_user}", - "gists_url": "https://api.github.com/users/HelenaW86/gists{/gist_id}", - "starred_url": "https://api.github.com/users/HelenaW86/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/HelenaW86/subscriptions", - "organizations_url": "https://api.github.com/users/HelenaW86/orgs", - "repos_url": "https://api.github.com/users/HelenaW86/repos", - "events_url": "https://api.github.com/users/HelenaW86/events{/privacy}", - "received_events_url": "https://api.github.com/users/HelenaW86/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 397944732, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTc5NDQ3MzI=", - "name": "project-news-site", - "full_name": "HelenaW86/project-news-site", - "private": false, - "owner": { - "login": "HelenaW86", - "id": 63056581, - "node_id": "MDQ6VXNlcjYzMDU2NTgx", - "avatar_url": "https://avatars.githubusercontent.com/u/63056581?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/HelenaW86", - "html_url": "https://github.com/HelenaW86", - "followers_url": "https://api.github.com/users/HelenaW86/followers", - "following_url": "https://api.github.com/users/HelenaW86/following{/other_user}", - "gists_url": "https://api.github.com/users/HelenaW86/gists{/gist_id}", - "starred_url": "https://api.github.com/users/HelenaW86/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/HelenaW86/subscriptions", - "organizations_url": "https://api.github.com/users/HelenaW86/orgs", - "repos_url": "https://api.github.com/users/HelenaW86/repos", - "events_url": "https://api.github.com/users/HelenaW86/events{/privacy}", - "received_events_url": "https://api.github.com/users/HelenaW86/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/HelenaW86/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/HelenaW86/project-news-site", - "forks_url": "https://api.github.com/repos/HelenaW86/project-news-site/forks", - "keys_url": "https://api.github.com/repos/HelenaW86/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/HelenaW86/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/HelenaW86/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/HelenaW86/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/HelenaW86/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/HelenaW86/project-news-site/events", - "assignees_url": "https://api.github.com/repos/HelenaW86/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/HelenaW86/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/HelenaW86/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/HelenaW86/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/HelenaW86/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/HelenaW86/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/HelenaW86/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/HelenaW86/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/HelenaW86/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/HelenaW86/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/HelenaW86/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/HelenaW86/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/HelenaW86/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/HelenaW86/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/HelenaW86/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/HelenaW86/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/HelenaW86/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/HelenaW86/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/HelenaW86/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/HelenaW86/project-news-site/merges", - "archive_url": "https://api.github.com/repos/HelenaW86/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/HelenaW86/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/HelenaW86/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/HelenaW86/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/HelenaW86/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/HelenaW86/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/HelenaW86/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/HelenaW86/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/HelenaW86/project-news-site/deployments", - "created_at": "2021-08-19T13:01:36Z", - "updated_at": "2021-09-16T09:02:06Z", - "pushed_at": "2021-09-16T09:02:02Z", - "git_url": "git://github.com/HelenaW86/project-news-site.git", - "ssh_url": "git@github.com:HelenaW86/project-news-site.git", - "clone_url": "https://github.com/HelenaW86/project-news-site.git", - "svn_url": "https://github.com/HelenaW86/project-news-site", - "homepage": null, - "size": 16751, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/182" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/182" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/182" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/182/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/182/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/182/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/ced5b64b885e18a5c83cd27d1f012a7976dc50a9" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/181", - "id": 721262730, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMjYyNzMw", - "html_url": "https://github.com/Technigo/project-news-site/pull/181", - "diff_url": "https://github.com/Technigo/project-news-site/pull/181.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/181.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/181", - "number": 181, - "state": "open", - "locked": false, - "title": "Week 2 Technigo project", - "user": { - "login": "Ajliin", - "id": 84288114, - "node_id": "MDQ6VXNlcjg0Mjg4MTE0", - "avatar_url": "https://avatars.githubusercontent.com/u/84288114?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Ajliin", - "html_url": "https://github.com/Ajliin", - "followers_url": "https://api.github.com/users/Ajliin/followers", - "following_url": "https://api.github.com/users/Ajliin/following{/other_user}", - "gists_url": "https://api.github.com/users/Ajliin/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Ajliin/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Ajliin/subscriptions", - "organizations_url": "https://api.github.com/users/Ajliin/orgs", - "repos_url": "https://api.github.com/users/Ajliin/repos", - "events_url": "https://api.github.com/users/Ajliin/events{/privacy}", - "received_events_url": "https://api.github.com/users/Ajliin/received_events", - "type": "User", - "site_admin": false - }, - "body": "Week 2 project\r\n\r\nLearned about grid and flexbox, worked fine combining both\r\n\r\n ", - "created_at": "2021-08-27T11:38:23Z", - "updated_at": "2021-08-31T18:30:55Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "d5778f08a32e5c25c53c80ac99a856b41294f958", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/181/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/181/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/181/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/0da0ebfee76d9602e994f82345cd82f9b5a4e5ff", - "head": { - "label": "Ajliin:master", - "ref": "master", - "sha": "0da0ebfee76d9602e994f82345cd82f9b5a4e5ff", - "user": { - "login": "Ajliin", - "id": 84288114, - "node_id": "MDQ6VXNlcjg0Mjg4MTE0", - "avatar_url": "https://avatars.githubusercontent.com/u/84288114?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Ajliin", - "html_url": "https://github.com/Ajliin", - "followers_url": "https://api.github.com/users/Ajliin/followers", - "following_url": "https://api.github.com/users/Ajliin/following{/other_user}", - "gists_url": "https://api.github.com/users/Ajliin/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Ajliin/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Ajliin/subscriptions", - "organizations_url": "https://api.github.com/users/Ajliin/orgs", - "repos_url": "https://api.github.com/users/Ajliin/repos", - "events_url": "https://api.github.com/users/Ajliin/events{/privacy}", - "received_events_url": "https://api.github.com/users/Ajliin/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 398332421, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTgzMzI0MjE=", - "name": "project-news-site", - "full_name": "Ajliin/project-news-site", - "private": false, - "owner": { - "login": "Ajliin", - "id": 84288114, - "node_id": "MDQ6VXNlcjg0Mjg4MTE0", - "avatar_url": "https://avatars.githubusercontent.com/u/84288114?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Ajliin", - "html_url": "https://github.com/Ajliin", - "followers_url": "https://api.github.com/users/Ajliin/followers", - "following_url": "https://api.github.com/users/Ajliin/following{/other_user}", - "gists_url": "https://api.github.com/users/Ajliin/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Ajliin/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Ajliin/subscriptions", - "organizations_url": "https://api.github.com/users/Ajliin/orgs", - "repos_url": "https://api.github.com/users/Ajliin/repos", - "events_url": "https://api.github.com/users/Ajliin/events{/privacy}", - "received_events_url": "https://api.github.com/users/Ajliin/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/Ajliin/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Ajliin/project-news-site", - "forks_url": "https://api.github.com/repos/Ajliin/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Ajliin/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Ajliin/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Ajliin/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Ajliin/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Ajliin/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Ajliin/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Ajliin/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Ajliin/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Ajliin/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Ajliin/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Ajliin/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Ajliin/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Ajliin/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Ajliin/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Ajliin/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Ajliin/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Ajliin/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Ajliin/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Ajliin/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Ajliin/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Ajliin/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Ajliin/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Ajliin/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Ajliin/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Ajliin/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Ajliin/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Ajliin/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Ajliin/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Ajliin/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Ajliin/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Ajliin/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Ajliin/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Ajliin/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Ajliin/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Ajliin/project-news-site/deployments", - "created_at": "2021-08-20T16:08:52Z", - "updated_at": "2021-08-27T18:20:26Z", - "pushed_at": "2021-08-27T18:20:23Z", - "git_url": "git://github.com/Ajliin/project-news-site.git", - "ssh_url": "git@github.com:Ajliin/project-news-site.git", - "clone_url": "https://github.com/Ajliin/project-news-site.git", - "svn_url": "https://github.com/Ajliin/project-news-site", - "homepage": null, - "size": 77654, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/181" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/181" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/181" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/181/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/181/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/181/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/0da0ebfee76d9602e994f82345cd82f9b5a4e5ff" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - }, - { - "url": "https://api.github.com/repos/Technigo/project-news-site/pulls/180", - "id": 721260641, - "node_id": "MDExOlB1bGxSZXF1ZXN0NzIxMjYwNjQx", - "html_url": "https://github.com/Technigo/project-news-site/pull/180", - "diff_url": "https://github.com/Technigo/project-news-site/pull/180.diff", - "patch_url": "https://github.com/Technigo/project-news-site/pull/180.patch", - "issue_url": "https://api.github.com/repos/Technigo/project-news-site/issues/180", - "number": 180, - "state": "open", - "locked": false, - "title": "Nehrwein Project News site", - "user": { - "login": "nehrwein", - "id": 77005046, - "node_id": "MDQ6VXNlcjc3MDA1MDQ2", - "avatar_url": "https://avatars.githubusercontent.com/u/77005046?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/nehrwein", - "html_url": "https://github.com/nehrwein", - "followers_url": "https://api.github.com/users/nehrwein/followers", - "following_url": "https://api.github.com/users/nehrwein/following{/other_user}", - "gists_url": "https://api.github.com/users/nehrwein/gists{/gist_id}", - "starred_url": "https://api.github.com/users/nehrwein/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/nehrwein/subscriptions", - "organizations_url": "https://api.github.com/users/nehrwein/orgs", - "repos_url": "https://api.github.com/users/nehrwein/repos", - "events_url": "https://api.github.com/users/nehrwein/events{/privacy}", - "received_events_url": "https://api.github.com/users/nehrwein/received_events", - "type": "User", - "site_admin": false - }, - "body": "Link to my deplyed project:\r\nhttps://nehrwein-project-news-site.netlify.app/\r\n\r\nmy reflections on the project:\r\nI started by making three layouts in figma. As this is totally new for me, it took me lots of hours to do so. I am still uncertain, if it was helpful for me or not, because I still did a lot of designing and changing the styles after I started coding.\r\n\r\nI started by desinging the mobile first and then adding responsiveness for tablet and desktop.\r\n\r\nI realised how easy it is to loose the overview in your code, even with a rather small project like mine. So, I wonder, if it would help to code section by section and make them responsive instead of designing the whole mobile look first. I will to keep an eye on that in my future projects. And I would also like to investigate about css animations.", - "created_at": "2021-08-27T11:34:52Z", - "updated_at": "2021-08-31T12:58:46Z", - "closed_at": null, - "merged_at": null, - "merge_commit_sha": "d26b0ce441efca019fba35d56e3819895f6a9909", - "assignee": null, - "assignees": [ - - ], - "requested_reviewers": [ - - ], - "requested_teams": [ - - ], - "labels": [ - - ], - "milestone": null, - "draft": false, - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/180/commits", - "review_comments_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/180/comments", - "review_comment_url": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/issues/180/comments", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/12e2e434290a63fea7f5d1020e08eaa237c3f98e", - "head": { - "label": "nehrwein:master", - "ref": "master", - "sha": "12e2e434290a63fea7f5d1020e08eaa237c3f98e", - "user": { - "login": "nehrwein", - "id": 77005046, - "node_id": "MDQ6VXNlcjc3MDA1MDQ2", - "avatar_url": "https://avatars.githubusercontent.com/u/77005046?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/nehrwein", - "html_url": "https://github.com/nehrwein", - "followers_url": "https://api.github.com/users/nehrwein/followers", - "following_url": "https://api.github.com/users/nehrwein/following{/other_user}", - "gists_url": "https://api.github.com/users/nehrwein/gists{/gist_id}", - "starred_url": "https://api.github.com/users/nehrwein/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/nehrwein/subscriptions", - "organizations_url": "https://api.github.com/users/nehrwein/orgs", - "repos_url": "https://api.github.com/users/nehrwein/repos", - "events_url": "https://api.github.com/users/nehrwein/events{/privacy}", - "received_events_url": "https://api.github.com/users/nehrwein/received_events", - "type": "User", - "site_admin": false - }, - "repo": { - "id": 399026574, - "node_id": "MDEwOlJlcG9zaXRvcnkzOTkwMjY1NzQ=", - "name": "project-news-site", - "full_name": "nehrwein/project-news-site", - "private": false, - "owner": { - "login": "nehrwein", - "id": 77005046, - "node_id": "MDQ6VXNlcjc3MDA1MDQ2", - "avatar_url": "https://avatars.githubusercontent.com/u/77005046?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/nehrwein", - "html_url": "https://github.com/nehrwein", - "followers_url": "https://api.github.com/users/nehrwein/followers", - "following_url": "https://api.github.com/users/nehrwein/following{/other_user}", - "gists_url": "https://api.github.com/users/nehrwein/gists{/gist_id}", - "starred_url": "https://api.github.com/users/nehrwein/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/nehrwein/subscriptions", - "organizations_url": "https://api.github.com/users/nehrwein/orgs", - "repos_url": "https://api.github.com/users/nehrwein/repos", - "events_url": "https://api.github.com/users/nehrwein/events{/privacy}", - "received_events_url": "https://api.github.com/users/nehrwein/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/nehrwein/project-news-site", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/nehrwein/project-news-site", - "forks_url": "https://api.github.com/repos/nehrwein/project-news-site/forks", - "keys_url": "https://api.github.com/repos/nehrwein/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/nehrwein/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/nehrwein/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/nehrwein/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/nehrwein/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/nehrwein/project-news-site/events", - "assignees_url": "https://api.github.com/repos/nehrwein/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/nehrwein/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/nehrwein/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/nehrwein/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/nehrwein/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/nehrwein/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/nehrwein/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/nehrwein/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/nehrwein/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/nehrwein/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/nehrwein/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/nehrwein/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/nehrwein/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/nehrwein/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/nehrwein/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/nehrwein/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/nehrwein/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/nehrwein/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/nehrwein/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/nehrwein/project-news-site/merges", - "archive_url": "https://api.github.com/repos/nehrwein/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/nehrwein/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/nehrwein/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/nehrwein/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/nehrwein/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/nehrwein/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/nehrwein/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/nehrwein/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/nehrwein/project-news-site/deployments", - "created_at": "2021-08-23T08:22:03Z", - "updated_at": "2021-08-31T12:58:47Z", - "pushed_at": "2021-08-31T12:58:44Z", - "git_url": "git://github.com/nehrwein/project-news-site.git", - "ssh_url": "git@github.com:nehrwein/project-news-site.git", - "clone_url": "https://github.com/nehrwein/project-news-site.git", - "svn_url": "https://github.com/nehrwein/project-news-site", - "homepage": null, - "size": 1095, - "stargazers_count": 0, - "watchers_count": 0, - "language": "HTML", - "has_issues": false, - "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, - "allow_forking": true, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master" - } - }, - "base": { - "label": "Technigo:master", - "ref": "master", - "sha": "7903e204a6ae7e9175f42ef56a018590cd9cd686", - "user": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "repo": { - "id": 229247684, - "node_id": "MDEwOlJlcG9zaXRvcnkyMjkyNDc2ODQ=", - "name": "project-news-site", - "full_name": "Technigo/project-news-site", - "private": false, - "owner": { - "login": "Technigo", - "id": 30344334, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMzQ0MzM0", - "avatar_url": "https://avatars.githubusercontent.com/u/30344334?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Technigo", - "html_url": "https://github.com/Technigo", - "followers_url": "https://api.github.com/users/Technigo/followers", - "following_url": "https://api.github.com/users/Technigo/following{/other_user}", - "gists_url": "https://api.github.com/users/Technigo/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Technigo/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Technigo/subscriptions", - "organizations_url": "https://api.github.com/users/Technigo/orgs", - "repos_url": "https://api.github.com/users/Technigo/repos", - "events_url": "https://api.github.com/users/Technigo/events{/privacy}", - "received_events_url": "https://api.github.com/users/Technigo/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Technigo/project-news-site", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Technigo/project-news-site", - "forks_url": "https://api.github.com/repos/Technigo/project-news-site/forks", - "keys_url": "https://api.github.com/repos/Technigo/project-news-site/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Technigo/project-news-site/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Technigo/project-news-site/teams", - "hooks_url": "https://api.github.com/repos/Technigo/project-news-site/hooks", - "issue_events_url": "https://api.github.com/repos/Technigo/project-news-site/issues/events{/number}", - "events_url": "https://api.github.com/repos/Technigo/project-news-site/events", - "assignees_url": "https://api.github.com/repos/Technigo/project-news-site/assignees{/user}", - "branches_url": "https://api.github.com/repos/Technigo/project-news-site/branches{/branch}", - "tags_url": "https://api.github.com/repos/Technigo/project-news-site/tags", - "blobs_url": "https://api.github.com/repos/Technigo/project-news-site/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Technigo/project-news-site/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Technigo/project-news-site/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Technigo/project-news-site/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Technigo/project-news-site/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Technigo/project-news-site/languages", - "stargazers_url": "https://api.github.com/repos/Technigo/project-news-site/stargazers", - "contributors_url": "https://api.github.com/repos/Technigo/project-news-site/contributors", - "subscribers_url": "https://api.github.com/repos/Technigo/project-news-site/subscribers", - "subscription_url": "https://api.github.com/repos/Technigo/project-news-site/subscription", - "commits_url": "https://api.github.com/repos/Technigo/project-news-site/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Technigo/project-news-site/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Technigo/project-news-site/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Technigo/project-news-site/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Technigo/project-news-site/contents/{+path}", - "compare_url": "https://api.github.com/repos/Technigo/project-news-site/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Technigo/project-news-site/merges", - "archive_url": "https://api.github.com/repos/Technigo/project-news-site/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Technigo/project-news-site/downloads", - "issues_url": "https://api.github.com/repos/Technigo/project-news-site/issues{/number}", - "pulls_url": "https://api.github.com/repos/Technigo/project-news-site/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Technigo/project-news-site/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Technigo/project-news-site/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Technigo/project-news-site/labels{/name}", - "releases_url": "https://api.github.com/repos/Technigo/project-news-site/releases{/id}", - "deployments_url": "https://api.github.com/repos/Technigo/project-news-site/deployments", - "created_at": "2019-12-20T10:53:24Z", - "updated_at": "2021-08-30T13:54:47Z", - "pushed_at": "2021-09-28T15:49:02Z", - "git_url": "git://github.com/Technigo/project-news-site.git", - "ssh_url": "git@github.com:Technigo/project-news-site.git", - "clone_url": "https://github.com/Technigo/project-news-site.git", - "svn_url": "https://github.com/Technigo/project-news-site", - "homepage": null, - "size": 763, - "stargazers_count": 1, - "watchers_count": 1, - "language": "HTML", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 241, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 66, - "license": null, - "allow_forking": true, - "forks": 241, - "open_issues": 66, - "watchers": 1, - "default_branch": "master" - } - }, - "_links": { - "self": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/180" - }, - "html": { - "href": "https://github.com/Technigo/project-news-site/pull/180" - }, - "issue": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/180" - }, - "comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/issues/180/comments" - }, - "review_comments": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/180/comments" - }, - "review_comment": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/comments{/number}" - }, - "commits": { - "href": "https://api.github.com/repos/Technigo/project-news-site/pulls/180/commits" - }, - "statuses": { - "href": "https://api.github.com/repos/Technigo/project-news-site/statuses/12e2e434290a63fea7f5d1020e08eaa237c3f98e" - } - }, - "author_association": "NONE", - "auto_merge": null, - "active_lock_reason": null - } -] From 19908d875c3f921249b69c532cfcd95930306d01 Mon Sep 17 00:00:00 2001 From: Sarah Mottram Date: Fri, 1 Oct 2021 16:33:11 +0200 Subject: [PATCH 09/12] updated README --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5c6fd3b9..4f7b7c18 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,10 @@ # GitHub Tracker -Replace this readme with your own information about your project. - -Start by briefly describing the assignment in a sentence or two. Keep it short and to the point. +Github tracker uses various parts of the Github REST api to reproduce some data from different github projects. ## The problem -Describe how you approached to problem, and what tools and techniques you used to solve it. How did you plan? What technologies did you use? If you had more time, what would be next? +This week I began by reading and reviewing the learning materials before starting the project. I found it quite hard to plan this week as I didn't know exacly what information would be found in each endpoint and so what I would want to display. So I found that both the HTML and CSS were hard to write or plan beforehand. If I were to do this project again I would look through the api first so that I could plan how my HTML and CSS would look, then go back to the javascript after this. ## View it live From 5e6450d800cb8d601971df9c08728c304ed10f3d Mon Sep 17 00:00:00 2001 From: Sarah Mottram Date: Thu, 14 Oct 2021 20:27:33 +0200 Subject: [PATCH 10/12] added classes to style instead of ids --- code/index.html | 4 ++-- code/style.css | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/index.html b/code/index.html index 1090254e..3886692a 100644 --- a/code/index.html +++ b/code/index.html @@ -19,7 +19,7 @@

GitHub Tracker

-
+
@@ -35,7 +35,7 @@

Projects

- +
diff --git a/code/style.css b/code/style.css index 923c3312..7f9fabe5 100644 --- a/code/style.css +++ b/code/style.css @@ -69,11 +69,11 @@ hr { color: var(--secondary); } -#user-info { +.user-info { text-align: center; } -#user-info p { +.user-info p { font-size: 20px; } @@ -187,11 +187,11 @@ main { margin: auto; max-width: 400px; } -#chart { +.chart { transition: 0.5s; } -#chart:hover { +.chart:hover { transform: scale(1.05); } From 1dc6d71b0b0c0568f1f49246c0bd90bf94fc9f8c Mon Sep 17 00:00:00 2001 From: Sarah Mottram Date: Thu, 14 Oct 2021 20:37:19 +0200 Subject: [PATCH 11/12] removed unused code after creating a branch for it --- code/script.js | 60 +------------------------------------------------- code/style.css | 49 ----------------------------------------- 2 files changed, 1 insertion(+), 108 deletions(-) diff --git a/code/script.js b/code/script.js index e69337ab..4d3fb4d0 100644 --- a/code/script.js +++ b/code/script.js @@ -1,10 +1,5 @@ // DOM selectors -// Buttons to choose which language to filter by (to do!!) -const hTMLButton = document.getElementById("HTML-button"); -const CSSButton = document.getElementById("CSS-button"); -const javascriptButton = document.getElementById("Javascript-button"); - // HTML sections to inject into const main = document.getElementById("projects"); const userInfo = document.getElementById("user-info"); @@ -31,17 +26,12 @@ const filterForTechnigoRepos = (data) => { return data.filter((repo) => repo.name.startsWith("project")); }; -// Not up and running yet -// const filterByLanguage = (data, language) => { -// return data.filter((repo) => repo.language === `${language}`); -// }; - const createHTMLForUser = (repo) => { return `github avatar

${repo.owner.login}

`; }; const createHTMLForRepo = (repo) => { - return `

${ repo.name @@ -50,33 +40,6 @@ const createHTMLForRepo = (repo) => { ).toDateString()}

`; }; -// This is for the flip cards, which I haven't deleted as I want to come back to it later. -// const createHTMLForRepo = (repo) => { -// return `
-//
-//
-//

${repo.name}

-//

Default branch: ${repo.default_branch}

-//

Last pushed: ${new Date(repo.pushed_at).toDateString()}

-//
-//
-//
-//
-// -//
-//

Show commit messages

-//
- -//
-//
-//
`; -// }; - const fetchPullRequests = (repo) => { fetch(`https://api.github.com/repos/Technigo/${repo.name}/pulls?per_page=100`) .then((res) => res.json()) @@ -114,26 +77,5 @@ const fetchCommits = (url, name) => { }); }; -// To hide the filtered projects, to do -// const hideProject = (project) => { -// project.style.display === "none"; -// }; - fetchUserRepos(USERS_REPOS_API); -// Event Listeners -hTMLButton.addEventListener("click", () => { -// document.querySelectorAll("HTML").forEach((project) => hideProject(project)); -}); - -CSSButton.addEventListener("click", () => { -// document.querySelectorAll("CSS").forEach((project) => { -// hideProject(project); -// }); -}); - -javascriptButton.addEventListener("click", () => { - document - // .querySelectorAll("JavaScript") - // .forEach((project) => hideProject(project)); -}); diff --git a/code/style.css b/code/style.css index 7f9fabe5..1d879dcb 100644 --- a/code/style.css +++ b/code/style.css @@ -84,54 +84,6 @@ main { gap: 2em; } -/* I've left this code here to come back to later. I want the cards to flip and have the commit modal and link on the backside, but I haven't fitted this into my existing CSS yet */ -/* .flip-card { - background-color: transparent; - width: 300px; - height: 200px; - border-radius: 5px; - perspective: 1000px; -} */ - -/* This container is needed to position the front and back side */ -/* .flip-card-inner { - position: relative; - width: 100%; - height: 100%; - text-align: center; - border: solid var(--secondary) 1px; - box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); - border-radius: 5px; - transition: transform 0.8s; - transform-style: preserve-3d; -} */ - -/* Do an horizontal flip when you move the mouse over the flip box container */ -/* .flip-card:hover .flip-card-inner { - transform: rotateY(180deg); -} */ - -/* Position the front and back side */ -/* .flip-card-front, -.flip-card-back { - position: absolute; - width: 100%; - height: 100%; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} */ - -/* .flip-card-front { - background-color: var(--secondary); - color: var(--primary); -} */ - -/* .flip-card-back { - background-color: var(--primary); - color: var(--secondary); - transform: rotateY(180deg); -} */ - .repo-container { background-color: var(--secondary); color: var(--primary); @@ -139,7 +91,6 @@ main { border-radius: 5px; padding: 1em; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); - /* height: 100%; */ } .repo-name { From 9bd0a023d79e7a7fd600e022cb5f3f5f68b81e4f Mon Sep 17 00:00:00 2001 From: Sarah Mottram Date: Thu, 14 Oct 2021 20:38:33 +0200 Subject: [PATCH 12/12] removed console logs --- code/script.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/script.js b/code/script.js index 4d3fb4d0..53e6a08b 100644 --- a/code/script.js +++ b/code/script.js @@ -12,7 +12,6 @@ const fetchUserRepos = (userUrl) => { .then((res) => res.json()) .then(filterForTechnigoRepos) .then((repos) => { - console.log(repos); userInfo.innerHTML = createHTMLForUser(repos[0]); repos.forEach((repo) => { main.innerHTML += createHTMLForRepo(repo); @@ -68,7 +67,6 @@ const fetchCommits = (url, name) => { fetch(url) .then((res) => res.json()) .then((data) => { - console.log(data); document.getElementById( `commit-${name}` ).innerHTML += `

Number of commits: ${

${repo.name}

Default branch: ${ + }" class="repo-container ${repo.language}" id="${repo.name}">

${repo.name}

Default branch: ${ repo.default_branch }

Last pushed: ${new Date( repo.pushed_at ).toDateString()}