From e2bbfc58586299b0d782db6af88271f491c7fe95 Mon Sep 17 00:00:00 2001 From: Sahan Serasinghe Date: Fri, 19 Nov 2021 00:23:41 +1030 Subject: [PATCH 1/7] Refactored fork param to be an enum --- .../github/GHContentSearchBuilder.java | 18 +++++++-- src/main/java/org/kohsuke/github/GHFork.java | 37 +++++++++++++++++ .../github/GHRepositorySearchBuilder.java | 40 +------------------ .../org/kohsuke/github/GHRepositoryTest.java | 10 ++--- .../java/org/kohsuke/github/GitHubTest.java | 23 +++++++++++ 5 files changed, 81 insertions(+), 47 deletions(-) create mode 100644 src/main/java/org/kohsuke/github/GHFork.java diff --git a/src/main/java/org/kohsuke/github/GHContentSearchBuilder.java b/src/main/java/org/kohsuke/github/GHContentSearchBuilder.java index e8bbfc7411..8b61bf5e73 100644 --- a/src/main/java/org/kohsuke/github/GHContentSearchBuilder.java +++ b/src/main/java/org/kohsuke/github/GHContentSearchBuilder.java @@ -44,12 +44,22 @@ public GHContentSearchBuilder language(String v) { /** * Fork gh content search builder. * - * @param v - * the v + * @param fork + * search mode for forks + * * @return the gh content search builder + * + * @see Searching + * in forks */ - public GHContentSearchBuilder fork(String v) { - return q("fork:" + v); + public GHContentSearchBuilder fork(GHFork fork) { + if (GHFork.PARENT_ONLY.equals(fork)) { + this.terms.removeIf(term -> term.contains("fork:")); + return this; + } + + return q("fork:" + fork); } /** diff --git a/src/main/java/org/kohsuke/github/GHFork.java b/src/main/java/org/kohsuke/github/GHFork.java new file mode 100644 index 0000000000..20d2cb9c0b --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHFork.java @@ -0,0 +1,37 @@ +package org.kohsuke.github; + +/** + * The enum for Fork search mode + */ +public enum GHFork { + + /** + * Search in the parent repository and in forks with more stars than the parent repository. + * + * Forks with the same or fewer stars than the parent repository are still ignored. + */ + PARENT_AND_FORKS("true"), + + /** + * Search only in forks with more stars than the parent repository. + * + * The parent repository is ignored. If no forks have more stars than the parent, no results will be returned. + */ + FORKS_ONLY("only"), + + /** + * (Default) Search only the parent repository. + * + * Forks are ignored. + */ + PARENT_ONLY(""); + + private String filterMode; + GHFork(String mode) { + this.filterMode = mode; + } + + public String toString() { + return filterMode; + } +} diff --git a/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java b/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java index 31b244464f..3b60fb4602 100644 --- a/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java +++ b/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java @@ -76,8 +76,8 @@ public GHRepositorySearchBuilder forks(String v) { * in forks * */ - public GHRepositorySearchBuilder fork(Fork fork) { - if (Fork.PARENT_ONLY.equals(fork)) { + public GHRepositorySearchBuilder fork(GHFork fork) { + if (GHFork.PARENT_ONLY.equals(fork)) { this.terms.removeIf(term -> term.contains("fork:")); return this; } @@ -216,42 +216,6 @@ public enum Sort { STARS, FORKS, UPDATED } - /** - * The enum for Fork search mode - */ - public enum Fork { - - /** - * Search in the parent repository and in forks with more stars than the parent repository. - * - * Forks with the same or fewer stars than the parent repository are still ignored. - */ - PARENT_AND_FORKS("true"), - - /** - * Search only in forks with more stars than the parent repository. - * - * The parent repository is ignored. If no forks have more stars than the parent, no results will be returned. - */ - FORKS_ONLY("only"), - - /** - * (Default) Search only the parent repository. - * - * Forks are ignored. - */ - PARENT_ONLY(""); - - private String filterMode; - Fork(String mode) { - this.filterMode = mode; - } - - public String toString() { - return filterMode; - } - } - private static class RepositorySearchResult extends SearchResult { private GHRepository[] items; diff --git a/src/test/java/org/kohsuke/github/GHRepositoryTest.java b/src/test/java/org/kohsuke/github/GHRepositoryTest.java index 784692fde7..c9cf2d2460 100644 --- a/src/test/java/org/kohsuke/github/GHRepositoryTest.java +++ b/src/test/java/org/kohsuke/github/GHRepositoryTest.java @@ -424,7 +424,7 @@ public void searchAllPublicAndForkedRepos() throws IOException { PagedSearchIterable list = gitHub.searchRepositories() .user("t0m4uk1991") .visibility(GHRepository.Visibility.PUBLIC) - .fork(GHRepositorySearchBuilder.Fork.PARENT_AND_FORKS) + .fork(GHFork.PARENT_AND_FORKS) .list(); List u = list.toList(); assertThat(u.size(), is(14)); @@ -437,7 +437,7 @@ public void searchForPublicForkedOnlyRepos() throws IOException { PagedSearchIterable list = gitHub.searchRepositories() .user("t0m4uk1991") .visibility(GHRepository.Visibility.PUBLIC) - .fork(GHRepositorySearchBuilder.Fork.FORKS_ONLY) + .fork(GHFork.FORKS_ONLY) .list(); List u = list.toList(); assertThat(u.size(), is(2)); @@ -467,15 +467,15 @@ public void ghRepositorySearchBuilderIgnoresUnknownVisibility() { @Test public void ghRepositorySearchBuilderForkDefaultResetForksSearchTerms() { GHRepositorySearchBuilder ghRepositorySearchBuilder = new GHRepositorySearchBuilder(gitHub); - ghRepositorySearchBuilder = ghRepositorySearchBuilder.fork(GHRepositorySearchBuilder.Fork.PARENT_AND_FORKS); + ghRepositorySearchBuilder = ghRepositorySearchBuilder.fork(GHFork.PARENT_AND_FORKS); assertThat(ghRepositorySearchBuilder.terms.stream().filter(item -> item.contains("fork:true")).count(), is(1L)); assertThat(ghRepositorySearchBuilder.terms.stream().filter(item -> item.contains("fork:")).count(), is(1L)); - ghRepositorySearchBuilder = ghRepositorySearchBuilder.fork(GHRepositorySearchBuilder.Fork.FORKS_ONLY); + ghRepositorySearchBuilder = ghRepositorySearchBuilder.fork(GHFork.FORKS_ONLY); assertThat(ghRepositorySearchBuilder.terms.stream().filter(item -> item.contains("fork:only")).count(), is(1L)); assertThat(ghRepositorySearchBuilder.terms.stream().filter(item -> item.contains("fork:")).count(), is(2L)); - ghRepositorySearchBuilder = ghRepositorySearchBuilder.fork(GHRepositorySearchBuilder.Fork.PARENT_ONLY); + ghRepositorySearchBuilder = ghRepositorySearchBuilder.fork(GHFork.PARENT_ONLY); assertThat(ghRepositorySearchBuilder.terms.stream().filter(item -> item.contains("fork:")).count(), is(0L)); } diff --git a/src/test/java/org/kohsuke/github/GitHubTest.java b/src/test/java/org/kohsuke/github/GitHubTest.java index e49d106697..4c3a58d2ff 100644 --- a/src/test/java/org/kohsuke/github/GitHubTest.java +++ b/src/test/java/org/kohsuke/github/GitHubTest.java @@ -154,6 +154,29 @@ public void searchContent() throws Exception { } + @Test + public void searchContentWithForks() { + PagedSearchIterable r1 = gitHub.searchContent() + .q("addClass") + .language("js") + .sort(GHContentSearchBuilder.Sort.INDEXED) + .order(GHDirection.DESC) + .list(); + GHContent c1 = r1.iterator().next(); + + PagedSearchIterable r2 = gitHub.searchContent() + .q("addClass") + .language("js") + .sort(GHContentSearchBuilder.Sort.INDEXED) + .order(GHDirection.DESC) + .fork(GHFork.PARENT_AND_FORKS) + .list(); + GHContent c2 = r2.iterator().next(); + + assertThat(c1.getPath(), not(equalTo(c2.getPath()))); + assertThat(r1.getTotalCount(), lessThan(r2.getTotalCount())); + } + @Test public void testListMyAuthorizations() throws IOException { PagedIterable list = gitHub.listMyAuthorizations(); From 1b9f220ca72ddfed8c097d3194b9ad7f08b02348 Mon Sep 17 00:00:00 2001 From: Sahan Serasinghe Date: Fri, 19 Nov 2021 00:49:00 +1030 Subject: [PATCH 2/7] Fixed PMD violations --- src/main/java/org/kohsuke/github/GHFork.java | 15 ++++++++++----- src/test/java/org/kohsuke/github/GitHubTest.java | 12 ++++++------ 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/src/main/java/org/kohsuke/github/GHFork.java b/src/main/java/org/kohsuke/github/GHFork.java index 20d2cb9c0b..318304d9db 100644 --- a/src/main/java/org/kohsuke/github/GHFork.java +++ b/src/main/java/org/kohsuke/github/GHFork.java @@ -6,16 +6,20 @@ public enum GHFork { /** - * Search in the parent repository and in forks with more stars than the parent repository. + * Search in the parent repository and in forks + * with more stars than the parent repository. * - * Forks with the same or fewer stars than the parent repository are still ignored. + * Forks with the same or fewer stars than + * the parent repository are still ignored. */ PARENT_AND_FORKS("true"), /** - * Search only in forks with more stars than the parent repository. + * Search only in forks with more stars than + * the parent repository. * - * The parent repository is ignored. If no forks have more stars than the parent, no results will be returned. + * The parent repository is ignored. If no forks + * have more stars than the parent, no results will be returned. */ FORKS_ONLY("only"), @@ -27,10 +31,11 @@ public enum GHFork { PARENT_ONLY(""); private String filterMode; - GHFork(String mode) { + GHFork(final String mode) { this.filterMode = mode; } + @Override public String toString() { return filterMode; } diff --git a/src/test/java/org/kohsuke/github/GitHubTest.java b/src/test/java/org/kohsuke/github/GitHubTest.java index 4c3a58d2ff..1961bca1d9 100644 --- a/src/test/java/org/kohsuke/github/GitHubTest.java +++ b/src/test/java/org/kohsuke/github/GitHubTest.java @@ -156,25 +156,25 @@ public void searchContent() throws Exception { @Test public void searchContentWithForks() { - PagedSearchIterable r1 = gitHub.searchContent() + final PagedSearchIterable results = gitHub.searchContent() .q("addClass") .language("js") .sort(GHContentSearchBuilder.Sort.INDEXED) .order(GHDirection.DESC) .list(); - GHContent c1 = r1.iterator().next(); + final GHContent topRepo1 = results.iterator().next(); - PagedSearchIterable r2 = gitHub.searchContent() + final PagedSearchIterable resultsWithForks = gitHub.searchContent() .q("addClass") .language("js") .sort(GHContentSearchBuilder.Sort.INDEXED) .order(GHDirection.DESC) .fork(GHFork.PARENT_AND_FORKS) .list(); - GHContent c2 = r2.iterator().next(); + final GHContent topRepo2 = resultsWithForks.iterator().next(); - assertThat(c1.getPath(), not(equalTo(c2.getPath()))); - assertThat(r1.getTotalCount(), lessThan(r2.getTotalCount())); + assertThat(topRepo1.getUrl(), not(equalTo(topRepo2.getUrl()))); + assertThat(results.getTotalCount(), lessThan(resultsWithForks.getTotalCount())); } @Test From 372a54d3e7cfc3733d512a0bf5e68119fdc95c55 Mon Sep 17 00:00:00 2001 From: Sahan Serasinghe Date: Sat, 20 Nov 2021 23:16:04 +1030 Subject: [PATCH 3/7] Remove redundant assertion Removed as it could be flaky and to keep the PMD violations to a minimum --- src/test/java/org/kohsuke/github/GitHubTest.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/test/java/org/kohsuke/github/GitHubTest.java b/src/test/java/org/kohsuke/github/GitHubTest.java index 1961bca1d9..2faa680d9d 100644 --- a/src/test/java/org/kohsuke/github/GitHubTest.java +++ b/src/test/java/org/kohsuke/github/GitHubTest.java @@ -162,7 +162,6 @@ public void searchContentWithForks() { .sort(GHContentSearchBuilder.Sort.INDEXED) .order(GHDirection.DESC) .list(); - final GHContent topRepo1 = results.iterator().next(); final PagedSearchIterable resultsWithForks = gitHub.searchContent() .q("addClass") @@ -171,9 +170,7 @@ public void searchContentWithForks() { .order(GHDirection.DESC) .fork(GHFork.PARENT_AND_FORKS) .list(); - final GHContent topRepo2 = resultsWithForks.iterator().next(); - assertThat(topRepo1.getUrl(), not(equalTo(topRepo2.getUrl()))); assertThat(results.getTotalCount(), lessThan(resultsWithForks.getTotalCount())); } From 89acb05be766bbc1a346f2363a4f98abf4c2bacc Mon Sep 17 00:00:00 2001 From: Sahan Serasinghe Date: Sun, 21 Nov 2021 23:49:43 +1030 Subject: [PATCH 4/7] Run spotless and generate WireMock snapshots --- src/main/java/org/kohsuke/github/GHFork.java | 12 +- .../__files/search_code-2.json | 2286 +++++++++++++++++ .../__files/search_code-3.json | 2286 +++++++++++++++++ .../__files/user-1.json | 46 + .../mappings/search_code-2.json | 47 + .../mappings/search_code-3.json | 47 + .../mappings/user-1.json | 48 + 7 files changed, 4764 insertions(+), 8 deletions(-) create mode 100644 src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-2.json create mode 100644 src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-3.json create mode 100644 src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/user-1.json create mode 100644 src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-2.json create mode 100644 src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-3.json create mode 100644 src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/user-1.json diff --git a/src/main/java/org/kohsuke/github/GHFork.java b/src/main/java/org/kohsuke/github/GHFork.java index 318304d9db..190006392c 100644 --- a/src/main/java/org/kohsuke/github/GHFork.java +++ b/src/main/java/org/kohsuke/github/GHFork.java @@ -6,20 +6,16 @@ public enum GHFork { /** - * Search in the parent repository and in forks - * with more stars than the parent repository. + * Search in the parent repository and in forks with more stars than the parent repository. * - * Forks with the same or fewer stars than - * the parent repository are still ignored. + * Forks with the same or fewer stars than the parent repository are still ignored. */ PARENT_AND_FORKS("true"), /** - * Search only in forks with more stars than - * the parent repository. + * Search only in forks with more stars than the parent repository. * - * The parent repository is ignored. If no forks - * have more stars than the parent, no results will be returned. + * The parent repository is ignored. If no forks have more stars than the parent, no results will be returned. */ FORKS_ONLY("only"), diff --git a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-2.json b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-2.json new file mode 100644 index 0000000000..f77a1258dc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-2.json @@ -0,0 +1,2286 @@ +{ + "total_count": 44015405, + "incomplete_results": false, + "items": [ + { + "name": "jquery.js", + "path": "Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.js", + "sha": "fc6c299b73e792ef288e785c22393a5df9dded4b", + "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", + "git_url": "https://api.github.com/repositories/325567144/git/blobs/fc6c299b73e792ef288e785c22393a5df9dded4b", + "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.js", + "repository": { + "id": 325567144, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", + "name": "Docker", + "full_name": "manish33/Docker", + "private": false, + "owner": { + "login": "manish33", + "id": 11520775, + "node_id": "MDQ6VXNlcjExNTIwNzc1", + "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/manish33", + "html_url": "https://github.com/manish33", + "followers_url": "https://api.github.com/users/manish33/followers", + "following_url": "https://api.github.com/users/manish33/following{/other_user}", + "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", + "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", + "organizations_url": "https://api.github.com/users/manish33/orgs", + "repos_url": "https://api.github.com/users/manish33/repos", + "events_url": "https://api.github.com/users/manish33/events{/privacy}", + "received_events_url": "https://api.github.com/users/manish33/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/manish33/Docker", + "description": "Learning Docker by example", + "fork": false, + "url": "https://api.github.com/repos/manish33/Docker", + "forks_url": "https://api.github.com/repos/manish33/Docker/forks", + "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/manish33/Docker/teams", + "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", + "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/manish33/Docker/events", + "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/manish33/Docker/tags", + "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/manish33/Docker/languages", + "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", + "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", + "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", + "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", + "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/manish33/Docker/merges", + "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", + "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", + "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + }, + "score": 1 + }, + { + "name": "jquery.js", + "path": "Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.js", + "sha": "fc6c299b73e792ef288e785c22393a5df9dded4b", + "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", + "git_url": "https://api.github.com/repositories/325567144/git/blobs/fc6c299b73e792ef288e785c22393a5df9dded4b", + "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.js", + "repository": { + "id": 325567144, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", + "name": "Docker", + "full_name": "manish33/Docker", + "private": false, + "owner": { + "login": "manish33", + "id": 11520775, + "node_id": "MDQ6VXNlcjExNTIwNzc1", + "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/manish33", + "html_url": "https://github.com/manish33", + "followers_url": "https://api.github.com/users/manish33/followers", + "following_url": "https://api.github.com/users/manish33/following{/other_user}", + "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", + "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", + "organizations_url": "https://api.github.com/users/manish33/orgs", + "repos_url": "https://api.github.com/users/manish33/repos", + "events_url": "https://api.github.com/users/manish33/events{/privacy}", + "received_events_url": "https://api.github.com/users/manish33/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/manish33/Docker", + "description": "Learning Docker by example", + "fork": false, + "url": "https://api.github.com/repos/manish33/Docker", + "forks_url": "https://api.github.com/repos/manish33/Docker/forks", + "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/manish33/Docker/teams", + "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", + "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/manish33/Docker/events", + "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/manish33/Docker/tags", + "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/manish33/Docker/languages", + "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", + "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", + "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", + "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", + "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/manish33/Docker/merges", + "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", + "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", + "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + }, + "score": 1 + }, + { + "name": "jquery.slim.js", + "path": "Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.slim.js", + "sha": "665bf108c997df270dab6ccfdd3590830eb17268", + "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.slim.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", + "git_url": "https://api.github.com/repositories/325567144/git/blobs/665bf108c997df270dab6ccfdd3590830eb17268", + "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.slim.js", + "repository": { + "id": 325567144, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", + "name": "Docker", + "full_name": "manish33/Docker", + "private": false, + "owner": { + "login": "manish33", + "id": 11520775, + "node_id": "MDQ6VXNlcjExNTIwNzc1", + "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/manish33", + "html_url": "https://github.com/manish33", + "followers_url": "https://api.github.com/users/manish33/followers", + "following_url": "https://api.github.com/users/manish33/following{/other_user}", + "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", + "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", + "organizations_url": "https://api.github.com/users/manish33/orgs", + "repos_url": "https://api.github.com/users/manish33/repos", + "events_url": "https://api.github.com/users/manish33/events{/privacy}", + "received_events_url": "https://api.github.com/users/manish33/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/manish33/Docker", + "description": "Learning Docker by example", + "fork": false, + "url": "https://api.github.com/repos/manish33/Docker", + "forks_url": "https://api.github.com/repos/manish33/Docker/forks", + "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/manish33/Docker/teams", + "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", + "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/manish33/Docker/events", + "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/manish33/Docker/tags", + "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/manish33/Docker/languages", + "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", + "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", + "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", + "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", + "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/manish33/Docker/merges", + "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", + "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", + "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + }, + "score": 1 + }, + { + "name": "jquery.slim.js", + "path": "Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.slim.js", + "sha": "665bf108c997df270dab6ccfdd3590830eb17268", + "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.slim.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", + "git_url": "https://api.github.com/repositories/325567144/git/blobs/665bf108c997df270dab6ccfdd3590830eb17268", + "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.slim.js", + "repository": { + "id": 325567144, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", + "name": "Docker", + "full_name": "manish33/Docker", + "private": false, + "owner": { + "login": "manish33", + "id": 11520775, + "node_id": "MDQ6VXNlcjExNTIwNzc1", + "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/manish33", + "html_url": "https://github.com/manish33", + "followers_url": "https://api.github.com/users/manish33/followers", + "following_url": "https://api.github.com/users/manish33/following{/other_user}", + "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", + "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", + "organizations_url": "https://api.github.com/users/manish33/orgs", + "repos_url": "https://api.github.com/users/manish33/repos", + "events_url": "https://api.github.com/users/manish33/events{/privacy}", + "received_events_url": "https://api.github.com/users/manish33/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/manish33/Docker", + "description": "Learning Docker by example", + "fork": false, + "url": "https://api.github.com/repos/manish33/Docker", + "forks_url": "https://api.github.com/repos/manish33/Docker/forks", + "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/manish33/Docker/teams", + "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", + "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/manish33/Docker/events", + "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/manish33/Docker/tags", + "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/manish33/Docker/languages", + "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", + "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", + "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", + "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", + "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/manish33/Docker/merges", + "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", + "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", + "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + }, + "score": 1 + }, + { + "name": "sb-admin-2.js", + "path": "Quick_Revision/DockerFileCreation/website/js/sb-admin-2.js", + "sha": "b0412d1510767e144cea19e323354e46b512476f", + "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation/website/js/sb-admin-2.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", + "git_url": "https://api.github.com/repositories/325567144/git/blobs/b0412d1510767e144cea19e323354e46b512476f", + "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation/website/js/sb-admin-2.js", + "repository": { + "id": 325567144, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", + "name": "Docker", + "full_name": "manish33/Docker", + "private": false, + "owner": { + "login": "manish33", + "id": 11520775, + "node_id": "MDQ6VXNlcjExNTIwNzc1", + "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/manish33", + "html_url": "https://github.com/manish33", + "followers_url": "https://api.github.com/users/manish33/followers", + "following_url": "https://api.github.com/users/manish33/following{/other_user}", + "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", + "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", + "organizations_url": "https://api.github.com/users/manish33/orgs", + "repos_url": "https://api.github.com/users/manish33/repos", + "events_url": "https://api.github.com/users/manish33/events{/privacy}", + "received_events_url": "https://api.github.com/users/manish33/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/manish33/Docker", + "description": "Learning Docker by example", + "fork": false, + "url": "https://api.github.com/repos/manish33/Docker", + "forks_url": "https://api.github.com/repos/manish33/Docker/forks", + "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/manish33/Docker/teams", + "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", + "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/manish33/Docker/events", + "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/manish33/Docker/tags", + "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/manish33/Docker/languages", + "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", + "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", + "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", + "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", + "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/manish33/Docker/merges", + "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", + "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", + "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + }, + "score": 1 + }, + { + "name": "sb-admin-2.js", + "path": "Quick_Revision/DockerFileCreation1/website/js/sb-admin-2.js", + "sha": "b0412d1510767e144cea19e323354e46b512476f", + "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation1/website/js/sb-admin-2.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", + "git_url": "https://api.github.com/repositories/325567144/git/blobs/b0412d1510767e144cea19e323354e46b512476f", + "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation1/website/js/sb-admin-2.js", + "repository": { + "id": 325567144, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", + "name": "Docker", + "full_name": "manish33/Docker", + "private": false, + "owner": { + "login": "manish33", + "id": 11520775, + "node_id": "MDQ6VXNlcjExNTIwNzc1", + "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/manish33", + "html_url": "https://github.com/manish33", + "followers_url": "https://api.github.com/users/manish33/followers", + "following_url": "https://api.github.com/users/manish33/following{/other_user}", + "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", + "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", + "organizations_url": "https://api.github.com/users/manish33/orgs", + "repos_url": "https://api.github.com/users/manish33/repos", + "events_url": "https://api.github.com/users/manish33/events{/privacy}", + "received_events_url": "https://api.github.com/users/manish33/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/manish33/Docker", + "description": "Learning Docker by example", + "fork": false, + "url": "https://api.github.com/repos/manish33/Docker", + "forks_url": "https://api.github.com/repos/manish33/Docker/forks", + "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/manish33/Docker/teams", + "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", + "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/manish33/Docker/events", + "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/manish33/Docker/tags", + "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/manish33/Docker/languages", + "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", + "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", + "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", + "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", + "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/manish33/Docker/merges", + "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", + "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", + "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + }, + "score": 1 + }, + { + "name": "jquery.appear.js", + "path": "js/jquery.appear.js", + "sha": "f320ab2dfb19a7f935f4118f8a32fe95fcf17aab", + "url": "https://api.github.com/repositories/430322211/contents/js/jquery.appear.js?ref=82d4a8fe8951ac5f7dd96315b5e2d5b6f27185d1", + "git_url": "https://api.github.com/repositories/430322211/git/blobs/f320ab2dfb19a7f935f4118f8a32fe95fcf17aab", + "html_url": "https://github.com/mehediemon007/thikana/blob/82d4a8fe8951ac5f7dd96315b5e2d5b6f27185d1/js/jquery.appear.js", + "repository": { + "id": 430322211, + "node_id": "R_kgDOGaYyIw", + "name": "thikana", + "full_name": "mehediemon007/thikana", + "private": false, + "owner": { + "login": "mehediemon007", + "id": 34378422, + "node_id": "MDQ6VXNlcjM0Mzc4NDIy", + "avatar_url": "https://avatars.githubusercontent.com/u/34378422?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mehediemon007", + "html_url": "https://github.com/mehediemon007", + "followers_url": "https://api.github.com/users/mehediemon007/followers", + "following_url": "https://api.github.com/users/mehediemon007/following{/other_user}", + "gists_url": "https://api.github.com/users/mehediemon007/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mehediemon007/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mehediemon007/subscriptions", + "organizations_url": "https://api.github.com/users/mehediemon007/orgs", + "repos_url": "https://api.github.com/users/mehediemon007/repos", + "events_url": "https://api.github.com/users/mehediemon007/events{/privacy}", + "received_events_url": "https://api.github.com/users/mehediemon007/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/mehediemon007/thikana", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/mehediemon007/thikana", + "forks_url": "https://api.github.com/repos/mehediemon007/thikana/forks", + "keys_url": "https://api.github.com/repos/mehediemon007/thikana/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mehediemon007/thikana/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mehediemon007/thikana/teams", + "hooks_url": "https://api.github.com/repos/mehediemon007/thikana/hooks", + "issue_events_url": "https://api.github.com/repos/mehediemon007/thikana/issues/events{/number}", + "events_url": "https://api.github.com/repos/mehediemon007/thikana/events", + "assignees_url": "https://api.github.com/repos/mehediemon007/thikana/assignees{/user}", + "branches_url": "https://api.github.com/repos/mehediemon007/thikana/branches{/branch}", + "tags_url": "https://api.github.com/repos/mehediemon007/thikana/tags", + "blobs_url": "https://api.github.com/repos/mehediemon007/thikana/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mehediemon007/thikana/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mehediemon007/thikana/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mehediemon007/thikana/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mehediemon007/thikana/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mehediemon007/thikana/languages", + "stargazers_url": "https://api.github.com/repos/mehediemon007/thikana/stargazers", + "contributors_url": "https://api.github.com/repos/mehediemon007/thikana/contributors", + "subscribers_url": "https://api.github.com/repos/mehediemon007/thikana/subscribers", + "subscription_url": "https://api.github.com/repos/mehediemon007/thikana/subscription", + "commits_url": "https://api.github.com/repos/mehediemon007/thikana/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mehediemon007/thikana/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mehediemon007/thikana/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mehediemon007/thikana/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mehediemon007/thikana/contents/{+path}", + "compare_url": "https://api.github.com/repos/mehediemon007/thikana/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mehediemon007/thikana/merges", + "archive_url": "https://api.github.com/repos/mehediemon007/thikana/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mehediemon007/thikana/downloads", + "issues_url": "https://api.github.com/repos/mehediemon007/thikana/issues{/number}", + "pulls_url": "https://api.github.com/repos/mehediemon007/thikana/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mehediemon007/thikana/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mehediemon007/thikana/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mehediemon007/thikana/labels{/name}", + "releases_url": "https://api.github.com/repos/mehediemon007/thikana/releases{/id}", + "deployments_url": "https://api.github.com/repos/mehediemon007/thikana/deployments" + }, + "score": 1 + }, + { + "name": "jquery.min.js", + "path": "BTVN_Buoi4/assets/js/jquery.min.js", + "sha": "3f2591b715a06b7627369d7554abf422f97a617f", + "url": "https://api.github.com/repositories/195409608/contents/BTVN_Buoi4/assets/js/jquery.min.js?ref=5090a21048ce18009f8845283e8522f2f1be1adc", + "git_url": "https://api.github.com/repositories/195409608/git/blobs/3f2591b715a06b7627369d7554abf422f97a617f", + "html_url": "https://github.com/ntheanh201/webteamproptit/blob/5090a21048ce18009f8845283e8522f2f1be1adc/BTVN_Buoi4/assets/js/jquery.min.js", + "repository": { + "id": 195409608, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTU0MDk2MDg=", + "name": "webteamproptit", + "full_name": "ntheanh201/webteamproptit", + "private": false, + "owner": { + "login": "ntheanh201", + "id": 29043139, + "node_id": "MDQ6VXNlcjI5MDQzMTM5", + "avatar_url": "https://avatars.githubusercontent.com/u/29043139?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ntheanh201", + "html_url": "https://github.com/ntheanh201", + "followers_url": "https://api.github.com/users/ntheanh201/followers", + "following_url": "https://api.github.com/users/ntheanh201/following{/other_user}", + "gists_url": "https://api.github.com/users/ntheanh201/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ntheanh201/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ntheanh201/subscriptions", + "organizations_url": "https://api.github.com/users/ntheanh201/orgs", + "repos_url": "https://api.github.com/users/ntheanh201/repos", + "events_url": "https://api.github.com/users/ntheanh201/events{/privacy}", + "received_events_url": "https://api.github.com/users/ntheanh201/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/ntheanh201/webteamproptit", + "description": "Quá trình học tập / hoạt động tại Team Web của ProPTIT", + "fork": false, + "url": "https://api.github.com/repos/ntheanh201/webteamproptit", + "forks_url": "https://api.github.com/repos/ntheanh201/webteamproptit/forks", + "keys_url": "https://api.github.com/repos/ntheanh201/webteamproptit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ntheanh201/webteamproptit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ntheanh201/webteamproptit/teams", + "hooks_url": "https://api.github.com/repos/ntheanh201/webteamproptit/hooks", + "issue_events_url": "https://api.github.com/repos/ntheanh201/webteamproptit/issues/events{/number}", + "events_url": "https://api.github.com/repos/ntheanh201/webteamproptit/events", + "assignees_url": "https://api.github.com/repos/ntheanh201/webteamproptit/assignees{/user}", + "branches_url": "https://api.github.com/repos/ntheanh201/webteamproptit/branches{/branch}", + "tags_url": "https://api.github.com/repos/ntheanh201/webteamproptit/tags", + "blobs_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ntheanh201/webteamproptit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ntheanh201/webteamproptit/languages", + "stargazers_url": "https://api.github.com/repos/ntheanh201/webteamproptit/stargazers", + "contributors_url": "https://api.github.com/repos/ntheanh201/webteamproptit/contributors", + "subscribers_url": "https://api.github.com/repos/ntheanh201/webteamproptit/subscribers", + "subscription_url": "https://api.github.com/repos/ntheanh201/webteamproptit/subscription", + "commits_url": "https://api.github.com/repos/ntheanh201/webteamproptit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ntheanh201/webteamproptit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ntheanh201/webteamproptit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/ntheanh201/webteamproptit/contents/{+path}", + "compare_url": "https://api.github.com/repos/ntheanh201/webteamproptit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ntheanh201/webteamproptit/merges", + "archive_url": "https://api.github.com/repos/ntheanh201/webteamproptit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ntheanh201/webteamproptit/downloads", + "issues_url": "https://api.github.com/repos/ntheanh201/webteamproptit/issues{/number}", + "pulls_url": "https://api.github.com/repos/ntheanh201/webteamproptit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ntheanh201/webteamproptit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ntheanh201/webteamproptit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ntheanh201/webteamproptit/labels{/name}", + "releases_url": "https://api.github.com/repos/ntheanh201/webteamproptit/releases{/id}", + "deployments_url": "https://api.github.com/repos/ntheanh201/webteamproptit/deployments" + }, + "score": 1 + }, + { + "name": "onePageScroller.js", + "path": "js/onePageScroller.js", + "sha": "f7e36d300b324f2d3a6e643b3bdbc739da4e2377", + "url": "https://api.github.com/repositories/419427167/contents/js/onePageScroller.js?ref=d6a33dbd6c93068c596efbf5195b7d57a178e0ad", + "git_url": "https://api.github.com/repositories/419427167/git/blobs/f7e36d300b324f2d3a6e643b3bdbc739da4e2377", + "html_url": "https://github.com/Nollldor/Beats/blob/d6a33dbd6c93068c596efbf5195b7d57a178e0ad/js/onePageScroller.js", + "repository": { + "id": 419427167, + "node_id": "R_kgDOGP_zXw", + "name": "Beats", + "full_name": "Nollldor/Beats", + "private": false, + "owner": { + "login": "Nollldor", + "id": 90249246, + "node_id": "MDQ6VXNlcjkwMjQ5MjQ2", + "avatar_url": "https://avatars.githubusercontent.com/u/90249246?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Nollldor", + "html_url": "https://github.com/Nollldor", + "followers_url": "https://api.github.com/users/Nollldor/followers", + "following_url": "https://api.github.com/users/Nollldor/following{/other_user}", + "gists_url": "https://api.github.com/users/Nollldor/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Nollldor/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Nollldor/subscriptions", + "organizations_url": "https://api.github.com/users/Nollldor/orgs", + "repos_url": "https://api.github.com/users/Nollldor/repos", + "events_url": "https://api.github.com/users/Nollldor/events{/privacy}", + "received_events_url": "https://api.github.com/users/Nollldor/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Nollldor/Beats", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Nollldor/Beats", + "forks_url": "https://api.github.com/repos/Nollldor/Beats/forks", + "keys_url": "https://api.github.com/repos/Nollldor/Beats/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Nollldor/Beats/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Nollldor/Beats/teams", + "hooks_url": "https://api.github.com/repos/Nollldor/Beats/hooks", + "issue_events_url": "https://api.github.com/repos/Nollldor/Beats/issues/events{/number}", + "events_url": "https://api.github.com/repos/Nollldor/Beats/events", + "assignees_url": "https://api.github.com/repos/Nollldor/Beats/assignees{/user}", + "branches_url": "https://api.github.com/repos/Nollldor/Beats/branches{/branch}", + "tags_url": "https://api.github.com/repos/Nollldor/Beats/tags", + "blobs_url": "https://api.github.com/repos/Nollldor/Beats/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Nollldor/Beats/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Nollldor/Beats/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Nollldor/Beats/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Nollldor/Beats/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Nollldor/Beats/languages", + "stargazers_url": "https://api.github.com/repos/Nollldor/Beats/stargazers", + "contributors_url": "https://api.github.com/repos/Nollldor/Beats/contributors", + "subscribers_url": "https://api.github.com/repos/Nollldor/Beats/subscribers", + "subscription_url": "https://api.github.com/repos/Nollldor/Beats/subscription", + "commits_url": "https://api.github.com/repos/Nollldor/Beats/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Nollldor/Beats/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Nollldor/Beats/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Nollldor/Beats/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Nollldor/Beats/contents/{+path}", + "compare_url": "https://api.github.com/repos/Nollldor/Beats/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Nollldor/Beats/merges", + "archive_url": "https://api.github.com/repos/Nollldor/Beats/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Nollldor/Beats/downloads", + "issues_url": "https://api.github.com/repos/Nollldor/Beats/issues{/number}", + "pulls_url": "https://api.github.com/repos/Nollldor/Beats/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Nollldor/Beats/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Nollldor/Beats/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Nollldor/Beats/labels{/name}", + "releases_url": "https://api.github.com/repos/Nollldor/Beats/releases{/id}", + "deployments_url": "https://api.github.com/repos/Nollldor/Beats/deployments" + }, + "score": 1 + }, + { + "name": "glightbox.js", + "path": "assets/vendor/glightbox/js/glightbox.js", + "sha": "d885231452a9ff56c7274ef6eba0485e5d9667cc", + "url": "https://api.github.com/repositories/430364298/contents/assets/vendor/glightbox/js/glightbox.js?ref=1069297af9010f23d01d05f4ec6c570c9c0b363d", + "git_url": "https://api.github.com/repositories/430364298/git/blobs/d885231452a9ff56c7274ef6eba0485e5d9667cc", + "html_url": "https://github.com/rushil0310design/rushil0310design.github.io/blob/1069297af9010f23d01d05f4ec6c570c9c0b363d/assets/vendor/glightbox/js/glightbox.js", + "repository": { + "id": 430364298, + "node_id": "R_kgDOGabWig", + "name": "rushil0310design.github.io", + "full_name": "rushil0310design/rushil0310design.github.io", + "private": false, + "owner": { + "login": "rushil0310design", + "id": 94788549, + "node_id": "U_kgDOBaZbxQ", + "avatar_url": "https://avatars.githubusercontent.com/u/94788549?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rushil0310design", + "html_url": "https://github.com/rushil0310design", + "followers_url": "https://api.github.com/users/rushil0310design/followers", + "following_url": "https://api.github.com/users/rushil0310design/following{/other_user}", + "gists_url": "https://api.github.com/users/rushil0310design/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rushil0310design/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rushil0310design/subscriptions", + "organizations_url": "https://api.github.com/users/rushil0310design/orgs", + "repos_url": "https://api.github.com/users/rushil0310design/repos", + "events_url": "https://api.github.com/users/rushil0310design/events{/privacy}", + "received_events_url": "https://api.github.com/users/rushil0310design/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/rushil0310design/rushil0310design.github.io", + "description": "portfolio website", + "fork": false, + "url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io", + "forks_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/forks", + "keys_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/teams", + "hooks_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/events", + "assignees_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/tags", + "blobs_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/languages", + "stargazers_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/subscription", + "commits_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/merges", + "archive_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/downloads", + "issues_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/deployments" + }, + "score": 1 + }, + { + "name": "skintools.js", + "path": "material/topicon/src/es/Plugin/skintools.js", + "sha": "c07a94108f35224555e1b0e905097fc22cded080", + "url": "https://api.github.com/repositories/429677614/contents/material/topicon/src/es/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/c07a94108f35224555e1b0e905097fc22cded080", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topicon/src/es/Plugin/skintools.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "skintools.js", + "path": "material/mmenu/src/es/Plugin/skintools.js", + "sha": "f99f35052d8bc871f0a018a0a1d9f0be588cafd8", + "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/f99f35052d8bc871f0a018a0a1d9f0be588cafd8", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Plugin/skintools.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "Site.js", + "path": "material/mmenu/src/es/Site.js", + "sha": "f218e901ce0968bd4e65da99add11bce1292e44b", + "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Site.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/f218e901ce0968bd4e65da99add11bce1292e44b", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Site.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "Sidebar.js", + "path": "material/mmenu/src/es/Section/Sidebar.js", + "sha": "ea92853466ca797e14d184f866488b66e942a085", + "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Section/Sidebar.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/ea92853466ca797e14d184f866488b66e942a085", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Section/Sidebar.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "skintools.js", + "path": "material/iconbar/assets/js/Plugin/skintools.js", + "sha": "e700e525d15a0952165d609db039b98fb8ac218f", + "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/assets/js/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/e700e525d15a0952165d609db039b98fb8ac218f", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/assets/js/Plugin/skintools.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "editable.js", + "path": "material/topbar/src/examples/es/forms/editable.js", + "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "url": "https://api.github.com/repositories/429677614/contents/material/topbar/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/src/examples/es/forms/editable.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "editable.js", + "path": "material/topicon/src/examples/es/forms/editable.js", + "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "url": "https://api.github.com/repositories/429677614/contents/material/topicon/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topicon/src/examples/es/forms/editable.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "editable.js", + "path": "material/iconbar/src/examples/es/forms/editable.js", + "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/src/examples/es/forms/editable.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "editable.js", + "path": "material/mmenu/src/examples/es/forms/editable.js", + "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/examples/es/forms/editable.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "PageAside.js", + "path": "material/mmenu/src/es/Section/PageAside.js", + "sha": "e29910db8ab81b8ca54e0e3cfe0c69c14a5a63f9", + "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Section/PageAside.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/e29910db8ab81b8ca54e0e3cfe0c69c14a5a63f9", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Section/PageAside.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "bootstrap-editable.js", + "path": "material/global/vendor/x-editable/bootstrap-editable.js", + "sha": "dd8138568e29426a6219d36a938124b5c6a4f161", + "url": "https://api.github.com/repositories/429677614/contents/material/global/vendor/x-editable/bootstrap-editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/dd8138568e29426a6219d36a938124b5c6a4f161", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/global/vendor/x-editable/bootstrap-editable.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "tether.js", + "path": "material/global/vendor/tether/tether.js", + "sha": "d546ee12a4337742ef86bcc68da7059b3e87495f", + "url": "https://api.github.com/repositories/429677614/contents/material/global/vendor/tether/tether.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/d546ee12a4337742ef86bcc68da7059b3e87495f", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/global/vendor/tether/tether.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "menu.js", + "path": "material/iconbar/assets/js/Plugin/menu.js", + "sha": "d1ffd81e11415c5356a5e86fb1a21738c9dc3e6b", + "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/assets/js/Plugin/menu.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/d1ffd81e11415c5356a5e86fb1a21738c9dc3e6b", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/assets/js/Plugin/menu.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "fb_wall.js", + "path": "material/topbar/assets/examples/js/pages/fb_wall.js", + "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", + "url": "https://api.github.com/repositories/429677614/contents/material/topbar/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/assets/examples/js/pages/fb_wall.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "fb_wall.js", + "path": "material/topicon/assets/examples/js/pages/fb_wall.js", + "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", + "url": "https://api.github.com/repositories/429677614/contents/material/topicon/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topicon/assets/examples/js/pages/fb_wall.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "fb_wall.js", + "path": "material/iconbar/assets/examples/js/pages/fb_wall.js", + "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", + "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/assets/examples/js/pages/fb_wall.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "fb_wall.js", + "path": "material/mmenu/assets/examples/js/pages/fb_wall.js", + "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", + "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/assets/examples/js/pages/fb_wall.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "Taskboard.js", + "path": "material/topbar/src/es/App/Taskboard.js", + "sha": "cece963f68cd8e2d8b60c1be6e7996b1d993be99", + "url": "https://api.github.com/repositories/429677614/contents/material/topbar/src/es/App/Taskboard.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/cece963f68cd8e2d8b60c1be6e7996b1d993be99", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/src/es/App/Taskboard.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "Taskboard.js", + "path": "material/iconbar/src/es/App/Taskboard.js", + "sha": "cece963f68cd8e2d8b60c1be6e7996b1d993be99", + "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/src/es/App/Taskboard.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/cece963f68cd8e2d8b60c1be6e7996b1d993be99", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/src/es/App/Taskboard.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "datatable.js", + "path": "material/topbar/src/examples/es/tables/datatable.js", + "sha": "c6905b28e3819cd4a07c737c406cefb0c4329bc3", + "url": "https://api.github.com/repositories/429677614/contents/material/topbar/src/examples/es/tables/datatable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/c6905b28e3819cd4a07c737c406cefb0c4329bc3", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/src/examples/es/tables/datatable.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-3.json b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-3.json new file mode 100644 index 0000000000..ab4e8d3a13 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-3.json @@ -0,0 +1,2286 @@ +{ + "total_count": 44033909, + "incomplete_results": false, + "items": [ + { + "name": "jquery.js", + "path": "Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.js", + "sha": "fc6c299b73e792ef288e785c22393a5df9dded4b", + "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", + "git_url": "https://api.github.com/repositories/325567144/git/blobs/fc6c299b73e792ef288e785c22393a5df9dded4b", + "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.js", + "repository": { + "id": 325567144, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", + "name": "Docker", + "full_name": "manish33/Docker", + "private": false, + "owner": { + "login": "manish33", + "id": 11520775, + "node_id": "MDQ6VXNlcjExNTIwNzc1", + "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/manish33", + "html_url": "https://github.com/manish33", + "followers_url": "https://api.github.com/users/manish33/followers", + "following_url": "https://api.github.com/users/manish33/following{/other_user}", + "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", + "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", + "organizations_url": "https://api.github.com/users/manish33/orgs", + "repos_url": "https://api.github.com/users/manish33/repos", + "events_url": "https://api.github.com/users/manish33/events{/privacy}", + "received_events_url": "https://api.github.com/users/manish33/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/manish33/Docker", + "description": "Learning Docker by example", + "fork": false, + "url": "https://api.github.com/repos/manish33/Docker", + "forks_url": "https://api.github.com/repos/manish33/Docker/forks", + "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/manish33/Docker/teams", + "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", + "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/manish33/Docker/events", + "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/manish33/Docker/tags", + "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/manish33/Docker/languages", + "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", + "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", + "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", + "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", + "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/manish33/Docker/merges", + "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", + "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", + "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + }, + "score": 1 + }, + { + "name": "jquery.js", + "path": "Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.js", + "sha": "fc6c299b73e792ef288e785c22393a5df9dded4b", + "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", + "git_url": "https://api.github.com/repositories/325567144/git/blobs/fc6c299b73e792ef288e785c22393a5df9dded4b", + "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.js", + "repository": { + "id": 325567144, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", + "name": "Docker", + "full_name": "manish33/Docker", + "private": false, + "owner": { + "login": "manish33", + "id": 11520775, + "node_id": "MDQ6VXNlcjExNTIwNzc1", + "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/manish33", + "html_url": "https://github.com/manish33", + "followers_url": "https://api.github.com/users/manish33/followers", + "following_url": "https://api.github.com/users/manish33/following{/other_user}", + "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", + "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", + "organizations_url": "https://api.github.com/users/manish33/orgs", + "repos_url": "https://api.github.com/users/manish33/repos", + "events_url": "https://api.github.com/users/manish33/events{/privacy}", + "received_events_url": "https://api.github.com/users/manish33/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/manish33/Docker", + "description": "Learning Docker by example", + "fork": false, + "url": "https://api.github.com/repos/manish33/Docker", + "forks_url": "https://api.github.com/repos/manish33/Docker/forks", + "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/manish33/Docker/teams", + "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", + "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/manish33/Docker/events", + "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/manish33/Docker/tags", + "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/manish33/Docker/languages", + "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", + "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", + "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", + "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", + "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/manish33/Docker/merges", + "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", + "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", + "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + }, + "score": 1 + }, + { + "name": "jquery.slim.js", + "path": "Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.slim.js", + "sha": "665bf108c997df270dab6ccfdd3590830eb17268", + "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.slim.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", + "git_url": "https://api.github.com/repositories/325567144/git/blobs/665bf108c997df270dab6ccfdd3590830eb17268", + "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.slim.js", + "repository": { + "id": 325567144, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", + "name": "Docker", + "full_name": "manish33/Docker", + "private": false, + "owner": { + "login": "manish33", + "id": 11520775, + "node_id": "MDQ6VXNlcjExNTIwNzc1", + "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/manish33", + "html_url": "https://github.com/manish33", + "followers_url": "https://api.github.com/users/manish33/followers", + "following_url": "https://api.github.com/users/manish33/following{/other_user}", + "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", + "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", + "organizations_url": "https://api.github.com/users/manish33/orgs", + "repos_url": "https://api.github.com/users/manish33/repos", + "events_url": "https://api.github.com/users/manish33/events{/privacy}", + "received_events_url": "https://api.github.com/users/manish33/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/manish33/Docker", + "description": "Learning Docker by example", + "fork": false, + "url": "https://api.github.com/repos/manish33/Docker", + "forks_url": "https://api.github.com/repos/manish33/Docker/forks", + "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/manish33/Docker/teams", + "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", + "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/manish33/Docker/events", + "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/manish33/Docker/tags", + "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/manish33/Docker/languages", + "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", + "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", + "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", + "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", + "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/manish33/Docker/merges", + "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", + "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", + "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + }, + "score": 1 + }, + { + "name": "jquery.slim.js", + "path": "Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.slim.js", + "sha": "665bf108c997df270dab6ccfdd3590830eb17268", + "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.slim.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", + "git_url": "https://api.github.com/repositories/325567144/git/blobs/665bf108c997df270dab6ccfdd3590830eb17268", + "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.slim.js", + "repository": { + "id": 325567144, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", + "name": "Docker", + "full_name": "manish33/Docker", + "private": false, + "owner": { + "login": "manish33", + "id": 11520775, + "node_id": "MDQ6VXNlcjExNTIwNzc1", + "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/manish33", + "html_url": "https://github.com/manish33", + "followers_url": "https://api.github.com/users/manish33/followers", + "following_url": "https://api.github.com/users/manish33/following{/other_user}", + "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", + "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", + "organizations_url": "https://api.github.com/users/manish33/orgs", + "repos_url": "https://api.github.com/users/manish33/repos", + "events_url": "https://api.github.com/users/manish33/events{/privacy}", + "received_events_url": "https://api.github.com/users/manish33/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/manish33/Docker", + "description": "Learning Docker by example", + "fork": false, + "url": "https://api.github.com/repos/manish33/Docker", + "forks_url": "https://api.github.com/repos/manish33/Docker/forks", + "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/manish33/Docker/teams", + "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", + "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/manish33/Docker/events", + "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/manish33/Docker/tags", + "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/manish33/Docker/languages", + "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", + "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", + "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", + "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", + "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/manish33/Docker/merges", + "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", + "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", + "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + }, + "score": 1 + }, + { + "name": "sb-admin-2.js", + "path": "Quick_Revision/DockerFileCreation/website/js/sb-admin-2.js", + "sha": "b0412d1510767e144cea19e323354e46b512476f", + "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation/website/js/sb-admin-2.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", + "git_url": "https://api.github.com/repositories/325567144/git/blobs/b0412d1510767e144cea19e323354e46b512476f", + "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation/website/js/sb-admin-2.js", + "repository": { + "id": 325567144, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", + "name": "Docker", + "full_name": "manish33/Docker", + "private": false, + "owner": { + "login": "manish33", + "id": 11520775, + "node_id": "MDQ6VXNlcjExNTIwNzc1", + "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/manish33", + "html_url": "https://github.com/manish33", + "followers_url": "https://api.github.com/users/manish33/followers", + "following_url": "https://api.github.com/users/manish33/following{/other_user}", + "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", + "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", + "organizations_url": "https://api.github.com/users/manish33/orgs", + "repos_url": "https://api.github.com/users/manish33/repos", + "events_url": "https://api.github.com/users/manish33/events{/privacy}", + "received_events_url": "https://api.github.com/users/manish33/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/manish33/Docker", + "description": "Learning Docker by example", + "fork": false, + "url": "https://api.github.com/repos/manish33/Docker", + "forks_url": "https://api.github.com/repos/manish33/Docker/forks", + "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/manish33/Docker/teams", + "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", + "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/manish33/Docker/events", + "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/manish33/Docker/tags", + "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/manish33/Docker/languages", + "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", + "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", + "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", + "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", + "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/manish33/Docker/merges", + "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", + "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", + "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + }, + "score": 1 + }, + { + "name": "sb-admin-2.js", + "path": "Quick_Revision/DockerFileCreation1/website/js/sb-admin-2.js", + "sha": "b0412d1510767e144cea19e323354e46b512476f", + "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation1/website/js/sb-admin-2.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", + "git_url": "https://api.github.com/repositories/325567144/git/blobs/b0412d1510767e144cea19e323354e46b512476f", + "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation1/website/js/sb-admin-2.js", + "repository": { + "id": 325567144, + "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", + "name": "Docker", + "full_name": "manish33/Docker", + "private": false, + "owner": { + "login": "manish33", + "id": 11520775, + "node_id": "MDQ6VXNlcjExNTIwNzc1", + "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/manish33", + "html_url": "https://github.com/manish33", + "followers_url": "https://api.github.com/users/manish33/followers", + "following_url": "https://api.github.com/users/manish33/following{/other_user}", + "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", + "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", + "organizations_url": "https://api.github.com/users/manish33/orgs", + "repos_url": "https://api.github.com/users/manish33/repos", + "events_url": "https://api.github.com/users/manish33/events{/privacy}", + "received_events_url": "https://api.github.com/users/manish33/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/manish33/Docker", + "description": "Learning Docker by example", + "fork": false, + "url": "https://api.github.com/repos/manish33/Docker", + "forks_url": "https://api.github.com/repos/manish33/Docker/forks", + "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/manish33/Docker/teams", + "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", + "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", + "events_url": "https://api.github.com/repos/manish33/Docker/events", + "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", + "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", + "tags_url": "https://api.github.com/repos/manish33/Docker/tags", + "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", + "languages_url": "https://api.github.com/repos/manish33/Docker/languages", + "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", + "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", + "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", + "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", + "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", + "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/manish33/Docker/merges", + "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", + "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", + "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", + "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", + "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", + "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", + "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + }, + "score": 1 + }, + { + "name": "jquery.appear.js", + "path": "js/jquery.appear.js", + "sha": "f320ab2dfb19a7f935f4118f8a32fe95fcf17aab", + "url": "https://api.github.com/repositories/430322211/contents/js/jquery.appear.js?ref=82d4a8fe8951ac5f7dd96315b5e2d5b6f27185d1", + "git_url": "https://api.github.com/repositories/430322211/git/blobs/f320ab2dfb19a7f935f4118f8a32fe95fcf17aab", + "html_url": "https://github.com/mehediemon007/thikana/blob/82d4a8fe8951ac5f7dd96315b5e2d5b6f27185d1/js/jquery.appear.js", + "repository": { + "id": 430322211, + "node_id": "R_kgDOGaYyIw", + "name": "thikana", + "full_name": "mehediemon007/thikana", + "private": false, + "owner": { + "login": "mehediemon007", + "id": 34378422, + "node_id": "MDQ6VXNlcjM0Mzc4NDIy", + "avatar_url": "https://avatars.githubusercontent.com/u/34378422?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mehediemon007", + "html_url": "https://github.com/mehediemon007", + "followers_url": "https://api.github.com/users/mehediemon007/followers", + "following_url": "https://api.github.com/users/mehediemon007/following{/other_user}", + "gists_url": "https://api.github.com/users/mehediemon007/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mehediemon007/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mehediemon007/subscriptions", + "organizations_url": "https://api.github.com/users/mehediemon007/orgs", + "repos_url": "https://api.github.com/users/mehediemon007/repos", + "events_url": "https://api.github.com/users/mehediemon007/events{/privacy}", + "received_events_url": "https://api.github.com/users/mehediemon007/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/mehediemon007/thikana", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/mehediemon007/thikana", + "forks_url": "https://api.github.com/repos/mehediemon007/thikana/forks", + "keys_url": "https://api.github.com/repos/mehediemon007/thikana/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mehediemon007/thikana/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mehediemon007/thikana/teams", + "hooks_url": "https://api.github.com/repos/mehediemon007/thikana/hooks", + "issue_events_url": "https://api.github.com/repos/mehediemon007/thikana/issues/events{/number}", + "events_url": "https://api.github.com/repos/mehediemon007/thikana/events", + "assignees_url": "https://api.github.com/repos/mehediemon007/thikana/assignees{/user}", + "branches_url": "https://api.github.com/repos/mehediemon007/thikana/branches{/branch}", + "tags_url": "https://api.github.com/repos/mehediemon007/thikana/tags", + "blobs_url": "https://api.github.com/repos/mehediemon007/thikana/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mehediemon007/thikana/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mehediemon007/thikana/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mehediemon007/thikana/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mehediemon007/thikana/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mehediemon007/thikana/languages", + "stargazers_url": "https://api.github.com/repos/mehediemon007/thikana/stargazers", + "contributors_url": "https://api.github.com/repos/mehediemon007/thikana/contributors", + "subscribers_url": "https://api.github.com/repos/mehediemon007/thikana/subscribers", + "subscription_url": "https://api.github.com/repos/mehediemon007/thikana/subscription", + "commits_url": "https://api.github.com/repos/mehediemon007/thikana/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mehediemon007/thikana/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mehediemon007/thikana/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mehediemon007/thikana/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mehediemon007/thikana/contents/{+path}", + "compare_url": "https://api.github.com/repos/mehediemon007/thikana/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mehediemon007/thikana/merges", + "archive_url": "https://api.github.com/repos/mehediemon007/thikana/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mehediemon007/thikana/downloads", + "issues_url": "https://api.github.com/repos/mehediemon007/thikana/issues{/number}", + "pulls_url": "https://api.github.com/repos/mehediemon007/thikana/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mehediemon007/thikana/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mehediemon007/thikana/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mehediemon007/thikana/labels{/name}", + "releases_url": "https://api.github.com/repos/mehediemon007/thikana/releases{/id}", + "deployments_url": "https://api.github.com/repos/mehediemon007/thikana/deployments" + }, + "score": 1 + }, + { + "name": "jquery.min.js", + "path": "BTVN_Buoi4/assets/js/jquery.min.js", + "sha": "3f2591b715a06b7627369d7554abf422f97a617f", + "url": "https://api.github.com/repositories/195409608/contents/BTVN_Buoi4/assets/js/jquery.min.js?ref=5090a21048ce18009f8845283e8522f2f1be1adc", + "git_url": "https://api.github.com/repositories/195409608/git/blobs/3f2591b715a06b7627369d7554abf422f97a617f", + "html_url": "https://github.com/ntheanh201/webteamproptit/blob/5090a21048ce18009f8845283e8522f2f1be1adc/BTVN_Buoi4/assets/js/jquery.min.js", + "repository": { + "id": 195409608, + "node_id": "MDEwOlJlcG9zaXRvcnkxOTU0MDk2MDg=", + "name": "webteamproptit", + "full_name": "ntheanh201/webteamproptit", + "private": false, + "owner": { + "login": "ntheanh201", + "id": 29043139, + "node_id": "MDQ6VXNlcjI5MDQzMTM5", + "avatar_url": "https://avatars.githubusercontent.com/u/29043139?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ntheanh201", + "html_url": "https://github.com/ntheanh201", + "followers_url": "https://api.github.com/users/ntheanh201/followers", + "following_url": "https://api.github.com/users/ntheanh201/following{/other_user}", + "gists_url": "https://api.github.com/users/ntheanh201/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ntheanh201/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ntheanh201/subscriptions", + "organizations_url": "https://api.github.com/users/ntheanh201/orgs", + "repos_url": "https://api.github.com/users/ntheanh201/repos", + "events_url": "https://api.github.com/users/ntheanh201/events{/privacy}", + "received_events_url": "https://api.github.com/users/ntheanh201/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/ntheanh201/webteamproptit", + "description": "Quá trình học tập / hoạt động tại Team Web của ProPTIT", + "fork": false, + "url": "https://api.github.com/repos/ntheanh201/webteamproptit", + "forks_url": "https://api.github.com/repos/ntheanh201/webteamproptit/forks", + "keys_url": "https://api.github.com/repos/ntheanh201/webteamproptit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ntheanh201/webteamproptit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ntheanh201/webteamproptit/teams", + "hooks_url": "https://api.github.com/repos/ntheanh201/webteamproptit/hooks", + "issue_events_url": "https://api.github.com/repos/ntheanh201/webteamproptit/issues/events{/number}", + "events_url": "https://api.github.com/repos/ntheanh201/webteamproptit/events", + "assignees_url": "https://api.github.com/repos/ntheanh201/webteamproptit/assignees{/user}", + "branches_url": "https://api.github.com/repos/ntheanh201/webteamproptit/branches{/branch}", + "tags_url": "https://api.github.com/repos/ntheanh201/webteamproptit/tags", + "blobs_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ntheanh201/webteamproptit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ntheanh201/webteamproptit/languages", + "stargazers_url": "https://api.github.com/repos/ntheanh201/webteamproptit/stargazers", + "contributors_url": "https://api.github.com/repos/ntheanh201/webteamproptit/contributors", + "subscribers_url": "https://api.github.com/repos/ntheanh201/webteamproptit/subscribers", + "subscription_url": "https://api.github.com/repos/ntheanh201/webteamproptit/subscription", + "commits_url": "https://api.github.com/repos/ntheanh201/webteamproptit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ntheanh201/webteamproptit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ntheanh201/webteamproptit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/ntheanh201/webteamproptit/contents/{+path}", + "compare_url": "https://api.github.com/repos/ntheanh201/webteamproptit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ntheanh201/webteamproptit/merges", + "archive_url": "https://api.github.com/repos/ntheanh201/webteamproptit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ntheanh201/webteamproptit/downloads", + "issues_url": "https://api.github.com/repos/ntheanh201/webteamproptit/issues{/number}", + "pulls_url": "https://api.github.com/repos/ntheanh201/webteamproptit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ntheanh201/webteamproptit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ntheanh201/webteamproptit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ntheanh201/webteamproptit/labels{/name}", + "releases_url": "https://api.github.com/repos/ntheanh201/webteamproptit/releases{/id}", + "deployments_url": "https://api.github.com/repos/ntheanh201/webteamproptit/deployments" + }, + "score": 1 + }, + { + "name": "onePageScroller.js", + "path": "js/onePageScroller.js", + "sha": "f7e36d300b324f2d3a6e643b3bdbc739da4e2377", + "url": "https://api.github.com/repositories/419427167/contents/js/onePageScroller.js?ref=d6a33dbd6c93068c596efbf5195b7d57a178e0ad", + "git_url": "https://api.github.com/repositories/419427167/git/blobs/f7e36d300b324f2d3a6e643b3bdbc739da4e2377", + "html_url": "https://github.com/Nollldor/Beats/blob/d6a33dbd6c93068c596efbf5195b7d57a178e0ad/js/onePageScroller.js", + "repository": { + "id": 419427167, + "node_id": "R_kgDOGP_zXw", + "name": "Beats", + "full_name": "Nollldor/Beats", + "private": false, + "owner": { + "login": "Nollldor", + "id": 90249246, + "node_id": "MDQ6VXNlcjkwMjQ5MjQ2", + "avatar_url": "https://avatars.githubusercontent.com/u/90249246?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Nollldor", + "html_url": "https://github.com/Nollldor", + "followers_url": "https://api.github.com/users/Nollldor/followers", + "following_url": "https://api.github.com/users/Nollldor/following{/other_user}", + "gists_url": "https://api.github.com/users/Nollldor/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Nollldor/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Nollldor/subscriptions", + "organizations_url": "https://api.github.com/users/Nollldor/orgs", + "repos_url": "https://api.github.com/users/Nollldor/repos", + "events_url": "https://api.github.com/users/Nollldor/events{/privacy}", + "received_events_url": "https://api.github.com/users/Nollldor/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/Nollldor/Beats", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/Nollldor/Beats", + "forks_url": "https://api.github.com/repos/Nollldor/Beats/forks", + "keys_url": "https://api.github.com/repos/Nollldor/Beats/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Nollldor/Beats/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Nollldor/Beats/teams", + "hooks_url": "https://api.github.com/repos/Nollldor/Beats/hooks", + "issue_events_url": "https://api.github.com/repos/Nollldor/Beats/issues/events{/number}", + "events_url": "https://api.github.com/repos/Nollldor/Beats/events", + "assignees_url": "https://api.github.com/repos/Nollldor/Beats/assignees{/user}", + "branches_url": "https://api.github.com/repos/Nollldor/Beats/branches{/branch}", + "tags_url": "https://api.github.com/repos/Nollldor/Beats/tags", + "blobs_url": "https://api.github.com/repos/Nollldor/Beats/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Nollldor/Beats/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Nollldor/Beats/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Nollldor/Beats/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Nollldor/Beats/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Nollldor/Beats/languages", + "stargazers_url": "https://api.github.com/repos/Nollldor/Beats/stargazers", + "contributors_url": "https://api.github.com/repos/Nollldor/Beats/contributors", + "subscribers_url": "https://api.github.com/repos/Nollldor/Beats/subscribers", + "subscription_url": "https://api.github.com/repos/Nollldor/Beats/subscription", + "commits_url": "https://api.github.com/repos/Nollldor/Beats/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Nollldor/Beats/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Nollldor/Beats/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Nollldor/Beats/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Nollldor/Beats/contents/{+path}", + "compare_url": "https://api.github.com/repos/Nollldor/Beats/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Nollldor/Beats/merges", + "archive_url": "https://api.github.com/repos/Nollldor/Beats/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Nollldor/Beats/downloads", + "issues_url": "https://api.github.com/repos/Nollldor/Beats/issues{/number}", + "pulls_url": "https://api.github.com/repos/Nollldor/Beats/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Nollldor/Beats/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Nollldor/Beats/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Nollldor/Beats/labels{/name}", + "releases_url": "https://api.github.com/repos/Nollldor/Beats/releases{/id}", + "deployments_url": "https://api.github.com/repos/Nollldor/Beats/deployments" + }, + "score": 1 + }, + { + "name": "skintools.js", + "path": "material/topicon/src/es/Plugin/skintools.js", + "sha": "c07a94108f35224555e1b0e905097fc22cded080", + "url": "https://api.github.com/repositories/429677614/contents/material/topicon/src/es/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/c07a94108f35224555e1b0e905097fc22cded080", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topicon/src/es/Plugin/skintools.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "skintools.js", + "path": "material/mmenu/src/es/Plugin/skintools.js", + "sha": "f99f35052d8bc871f0a018a0a1d9f0be588cafd8", + "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/f99f35052d8bc871f0a018a0a1d9f0be588cafd8", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Plugin/skintools.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "Site.js", + "path": "material/mmenu/src/es/Site.js", + "sha": "f218e901ce0968bd4e65da99add11bce1292e44b", + "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Site.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/f218e901ce0968bd4e65da99add11bce1292e44b", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Site.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "Sidebar.js", + "path": "material/mmenu/src/es/Section/Sidebar.js", + "sha": "ea92853466ca797e14d184f866488b66e942a085", + "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Section/Sidebar.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/ea92853466ca797e14d184f866488b66e942a085", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Section/Sidebar.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "skintools.js", + "path": "material/iconbar/assets/js/Plugin/skintools.js", + "sha": "e700e525d15a0952165d609db039b98fb8ac218f", + "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/assets/js/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/e700e525d15a0952165d609db039b98fb8ac218f", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/assets/js/Plugin/skintools.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "editable.js", + "path": "material/topbar/src/examples/es/forms/editable.js", + "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "url": "https://api.github.com/repositories/429677614/contents/material/topbar/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/src/examples/es/forms/editable.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "editable.js", + "path": "material/topicon/src/examples/es/forms/editable.js", + "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "url": "https://api.github.com/repositories/429677614/contents/material/topicon/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topicon/src/examples/es/forms/editable.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "editable.js", + "path": "material/iconbar/src/examples/es/forms/editable.js", + "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/src/examples/es/forms/editable.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "editable.js", + "path": "material/mmenu/src/examples/es/forms/editable.js", + "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/examples/es/forms/editable.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "PageAside.js", + "path": "material/mmenu/src/es/Section/PageAside.js", + "sha": "e29910db8ab81b8ca54e0e3cfe0c69c14a5a63f9", + "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Section/PageAside.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/e29910db8ab81b8ca54e0e3cfe0c69c14a5a63f9", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Section/PageAside.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "bootstrap-editable.js", + "path": "material/global/vendor/x-editable/bootstrap-editable.js", + "sha": "dd8138568e29426a6219d36a938124b5c6a4f161", + "url": "https://api.github.com/repositories/429677614/contents/material/global/vendor/x-editable/bootstrap-editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/dd8138568e29426a6219d36a938124b5c6a4f161", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/global/vendor/x-editable/bootstrap-editable.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "tether.js", + "path": "material/global/vendor/tether/tether.js", + "sha": "d546ee12a4337742ef86bcc68da7059b3e87495f", + "url": "https://api.github.com/repositories/429677614/contents/material/global/vendor/tether/tether.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/d546ee12a4337742ef86bcc68da7059b3e87495f", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/global/vendor/tether/tether.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "menu.js", + "path": "material/iconbar/assets/js/Plugin/menu.js", + "sha": "d1ffd81e11415c5356a5e86fb1a21738c9dc3e6b", + "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/assets/js/Plugin/menu.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/d1ffd81e11415c5356a5e86fb1a21738c9dc3e6b", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/assets/js/Plugin/menu.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "fb_wall.js", + "path": "material/topbar/assets/examples/js/pages/fb_wall.js", + "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", + "url": "https://api.github.com/repositories/429677614/contents/material/topbar/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/assets/examples/js/pages/fb_wall.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "fb_wall.js", + "path": "material/topicon/assets/examples/js/pages/fb_wall.js", + "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", + "url": "https://api.github.com/repositories/429677614/contents/material/topicon/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topicon/assets/examples/js/pages/fb_wall.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "fb_wall.js", + "path": "material/iconbar/assets/examples/js/pages/fb_wall.js", + "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", + "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/assets/examples/js/pages/fb_wall.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "fb_wall.js", + "path": "material/mmenu/assets/examples/js/pages/fb_wall.js", + "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", + "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/assets/examples/js/pages/fb_wall.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "Taskboard.js", + "path": "material/topbar/src/es/App/Taskboard.js", + "sha": "cece963f68cd8e2d8b60c1be6e7996b1d993be99", + "url": "https://api.github.com/repositories/429677614/contents/material/topbar/src/es/App/Taskboard.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/cece963f68cd8e2d8b60c1be6e7996b1d993be99", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/src/es/App/Taskboard.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "Taskboard.js", + "path": "material/iconbar/src/es/App/Taskboard.js", + "sha": "cece963f68cd8e2d8b60c1be6e7996b1d993be99", + "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/src/es/App/Taskboard.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/cece963f68cd8e2d8b60c1be6e7996b1d993be99", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/src/es/App/Taskboard.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "datatable.js", + "path": "material/topbar/src/examples/es/tables/datatable.js", + "sha": "c6905b28e3819cd4a07c737c406cefb0c4329bc3", + "url": "https://api.github.com/repositories/429677614/contents/material/topbar/src/examples/es/tables/datatable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/c6905b28e3819cd4a07c737c406cefb0c4329bc3", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/src/examples/es/tables/datatable.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + }, + { + "name": "skintools.js", + "path": "material/iconbar/src/js/Plugin/skintools.js", + "sha": "be0a40c98109c4692c31c9a36ab262ac33f392d2", + "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/src/js/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", + "git_url": "https://api.github.com/repositories/429677614/git/blobs/be0a40c98109c4692c31c9a36ab262ac33f392d2", + "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/src/js/Plugin/skintools.js", + "repository": { + "id": 429677614, + "node_id": "R_kgDOGZxcLg", + "name": "newer_news_web", + "full_name": "cream-paasta/newer_news_web", + "private": false, + "owner": { + "login": "cream-paasta", + "id": 93564427, + "node_id": "O_kgDOBZOuCw", + "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cream-paasta", + "html_url": "https://github.com/cream-paasta", + "followers_url": "https://api.github.com/users/cream-paasta/followers", + "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", + "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", + "organizations_url": "https://api.github.com/users/cream-paasta/orgs", + "repos_url": "https://api.github.com/users/cream-paasta/repos", + "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", + "received_events_url": "https://api.github.com/users/cream-paasta/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/cream-paasta/newer_news_web", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/cream-paasta/newer_news_web", + "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", + "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", + "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", + "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", + "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", + "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", + "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", + "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", + "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", + "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", + "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", + "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", + "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", + "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", + "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", + "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", + "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", + "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", + "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", + "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", + "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", + "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", + "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + }, + "score": 1 + } + ] +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/user-1.json b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/user-1.json new file mode 100644 index 0000000000..b7eb3749f3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/user-1.json @@ -0,0 +1,46 @@ +{ + "login": "sahansera", + "id": 2032296, + "node_id": "MDQ6VXNlcjIwMzIyOTY=", + "avatar_url": "https://avatars.githubusercontent.com/u/2032296?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sahansera", + "html_url": "https://github.com/sahansera", + "followers_url": "https://api.github.com/users/sahansera/followers", + "following_url": "https://api.github.com/users/sahansera/following{/other_user}", + "gists_url": "https://api.github.com/users/sahansera/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sahansera/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sahansera/subscriptions", + "organizations_url": "https://api.github.com/users/sahansera/orgs", + "repos_url": "https://api.github.com/users/sahansera/repos", + "events_url": "https://api.github.com/users/sahansera/events{/privacy}", + "received_events_url": "https://api.github.com/users/sahansera/received_events", + "type": "User", + "site_admin": true, + "name": "Sahan Serasinghe", + "company": "@github", + "blog": "https://sahansera.dev", + "location": "Adelaide, Australia", + "email": "sahan.serasinghe@gmail.com", + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 79, + "public_gists": 6, + "followers": 26, + "following": 19, + "created_at": "2012-07-24T07:16:33Z", + "updated_at": "2021-11-18T15:29:00Z", + "private_gists": 7, + "total_private_repos": 25, + "owned_private_repos": 25, + "disk_usage": 505415, + "collaborators": 1, + "two_factor_authentication": true, + "plan": { + "name": "pro", + "space": 976562499, + "collaborators": 0, + "private_repos": 9999 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-2.json b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-2.json new file mode 100644 index 0000000000..4d552c777d --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-2.json @@ -0,0 +1,47 @@ +{ + "id": "b264f2c8-9780-4d39-8f59-39adb461e042", + "name": "search_code", + "request": { + "url": "/search/code?sort=indexed&order=desc&q=addClass+language%3Ajs", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "search_code-2.json", + "headers": { + "Server": "GitHub.com", + "Date": "Sun, 21 Nov 2021 13:04:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "no-cache", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "X-OAuth-Scopes": "admin:org, delete_repo, repo, user", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-01-30 03:21:12 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "X-RateLimit-Limit": "30", + "X-RateLimit-Remaining": "29", + "X-RateLimit-Reset": "1637499943", + "X-RateLimit-Used": "1", + "X-RateLimit-Resource": "search", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5C0:1F74:CD3CA9:DC0F7D:619A43EA", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "b264f2c8-9780-4d39-8f59-39adb461e042", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-3.json b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-3.json new file mode 100644 index 0000000000..2688fb2c9a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-3.json @@ -0,0 +1,47 @@ +{ + "id": "e8cbb690-9c42-4a75-83c8-65a3dc22c263", + "name": "search_code", + "request": { + "url": "/search/code?sort=indexed&order=desc&q=addClass+language%3Ajs+fork%3Atrue", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "search_code-3.json", + "headers": { + "Server": "GitHub.com", + "Date": "Sun, 21 Nov 2021 13:04:48 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "no-cache", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "X-OAuth-Scopes": "admin:org, delete_repo, repo, user", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-01-30 03:21:12 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "X-RateLimit-Limit": "30", + "X-RateLimit-Remaining": "28", + "X-RateLimit-Reset": "1637499943", + "X-RateLimit-Used": "2", + "X-RateLimit-Resource": "search", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5C1:1F74:CD3D28:DC100B:619A43EE", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "e8cbb690-9c42-4a75-83c8-65a3dc22c263", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/user-1.json new file mode 100644 index 0000000000..34d0febba0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/user-1.json @@ -0,0 +1,48 @@ +{ + "id": "117d529c-d4aa-46ea-8b5b-c07ea58ee7be", + "name": "user", + "request": { + "url": "/user", + "method": "GET", + "headers": { + "Accept": { + "equalTo": "application/vnd.github.v3+json" + } + } + }, + "response": { + "status": 200, + "bodyFileName": "user-1.json", + "headers": { + "Server": "GitHub.com", + "Date": "Sun, 21 Nov 2021 13:04:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding, Accept, X-Requested-With" + ], + "ETag": "W/\"274b7a0391a4d8ec088bc09c2ea4493111a73618dc4f9b76977913c0187d8e4b\"", + "Last-Modified": "Thu, 18 Nov 2021 15:29:00 GMT", + "X-OAuth-Scopes": "admin:org, delete_repo, repo, user", + "X-Accepted-OAuth-Scopes": "", + "github-authentication-token-expiration": "2022-01-30 03:21:12 UTC", + "X-GitHub-Media-Type": "github.v3; format=json", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4793", + "X-RateLimit-Reset": "1637502525", + "X-RateLimit-Used": "207", + "X-RateLimit-Resource": "core", + "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", + "X-Frame-Options": "deny", + "X-Content-Type-Options": "nosniff", + "X-XSS-Protection": "0", + "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", + "Content-Security-Policy": "default-src 'none'", + "X-GitHub-Request-Id": "D5BE:1F74:CD3C84:DC0F57:619A43E9" + } + }, + "uuid": "117d529c-d4aa-46ea-8b5b-c07ea58ee7be", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file From 1f704e370ecb859d2d3023cde1f84aa1f9083fba Mon Sep 17 00:00:00 2001 From: Sahan Serasinghe Date: Mon, 22 Nov 2021 20:34:29 +1030 Subject: [PATCH 5/7] Reinstated the old methods for backward compatibility --- .../github/GHContentSearchBuilder.java | 12 + .../github/GHRepositorySearchBuilder.java | 73 + .../java/org/kohsuke/github/GitHubTest.java | 1 + .../__files/search_code-2.json | 3830 ++++++++-------- .../__files/search_code-3.json | 3832 ++++++++--------- .../__files/user-1.json | 2 +- .../mappings/search_code-2.json | 10 +- .../mappings/search_code-3.json | 10 +- .../mappings/user-1.json | 16 +- 9 files changed, 3860 insertions(+), 3926 deletions(-) diff --git a/src/main/java/org/kohsuke/github/GHContentSearchBuilder.java b/src/main/java/org/kohsuke/github/GHContentSearchBuilder.java index 8b61bf5e73..a5f10b191f 100644 --- a/src/main/java/org/kohsuke/github/GHContentSearchBuilder.java +++ b/src/main/java/org/kohsuke/github/GHContentSearchBuilder.java @@ -41,6 +41,18 @@ public GHContentSearchBuilder language(String v) { return q("language:" + v); } + /** + * Fork gh content search builder. + * + * @param v + * the v + * @return the gh content search builder + */ + @Deprecated + public GHContentSearchBuilder fork(String v) { + return q("fork:" + v); + } + /** * Fork gh content search builder. * diff --git a/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java b/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java index 3b60fb4602..5506f68c59 100644 --- a/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java +++ b/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java @@ -52,6 +52,40 @@ public GHRepositorySearchBuilder forks(String v) { return q("forks:" + v); } + /** + * Searching in forks + * + * The default search mode is {@link Fork#PARENT_ONLY}. In that mode, forks are not included in search results. + * + *

+ * Passing {@link Fork#PARENT_AND_FORKS} or {@link Fork#FORKS_ONLY} will show results from forks, but only if they + * have more stars than the parent repository. + * + *

+ * IMPORTANT: Regardless of this setting, no search results will ever be returned for forks with equal or fewer + * stars than the parent repository. Forks with less stars than the parent repository are not included in the index + * for code searching. + * + * @param fork + * search mode for forks + * + * @return the gh repository search builder + * + * @see Searching + * in forks + * + */ + @Deprecated + public GHRepositorySearchBuilder fork(Fork fork) { + if (Fork.PARENT_ONLY.equals(fork)) { + this.terms.removeIf(term -> term.contains("fork:")); + return this; + } + + return q("fork:" + fork); + } + /** * Searching in forks * @@ -216,6 +250,45 @@ public enum Sort { STARS, FORKS, UPDATED } + /** + * The enum for Fork search mode + * Note: Kept for backward compatibility. Use GHFork instead. + */ + @Deprecated + public enum Fork { + + /** + * Search in the parent repository and in forks with more stars than the parent repository. + * + * Forks with the same or fewer stars than the parent repository are still ignored. + */ + PARENT_AND_FORKS("true"), + + /** + * Search only in forks with more stars than the parent repository. + * + * The parent repository is ignored. If no forks have more stars than the parent, no results will be returned. + */ + FORKS_ONLY("only"), + + /** + * (Default) Search only the parent repository. + * + * Forks are ignored. + */ + PARENT_ONLY(""); + + private String filterMode; + Fork(final String mode) { + this.filterMode = mode; + } + + @Override + public String toString() { + return filterMode; + } + } + private static class RepositorySearchResult extends SearchResult { private GHRepository[] items; diff --git a/src/test/java/org/kohsuke/github/GitHubTest.java b/src/test/java/org/kohsuke/github/GitHubTest.java index 2faa680d9d..bbb7df1689 100644 --- a/src/test/java/org/kohsuke/github/GitHubTest.java +++ b/src/test/java/org/kohsuke/github/GitHubTest.java @@ -161,6 +161,7 @@ public void searchContentWithForks() { .language("js") .sort(GHContentSearchBuilder.Sort.INDEXED) .order(GHDirection.DESC) + .fork(GHFork.PARENT_ONLY) .list(); final PagedSearchIterable resultsWithForks = gitHub.searchContent() diff --git a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-2.json b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-2.json index f77a1258dc..336bb9b6b6 100644 --- a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-2.json +++ b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-2.json @@ -1,2284 +1,2208 @@ { - "total_count": 44015405, + "total_count": 43731000, "incomplete_results": false, "items": [ { - "name": "jquery.js", - "path": "Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.js", - "sha": "fc6c299b73e792ef288e785c22393a5df9dded4b", - "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", - "git_url": "https://api.github.com/repositories/325567144/git/blobs/fc6c299b73e792ef288e785c22393a5df9dded4b", - "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.js", + "name": "theme.js", + "path": "assets/js/theme.js", + "sha": "26b1635811035776912d279ee10f2bcc0a9ae695", + "url": "https://api.github.com/repositories/430646761/contents/assets/js/theme.js?ref=16c721b09cf58abca241295899aaf0884e519abe", + "git_url": "https://api.github.com/repositories/430646761/git/blobs/26b1635811035776912d279ee10f2bcc0a9ae695", + "html_url": "https://github.com/hapy-new-merry/happy-1/blob/16c721b09cf58abca241295899aaf0884e519abe/assets/js/theme.js", "repository": { - "id": 325567144, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", - "name": "Docker", - "full_name": "manish33/Docker", + "id": 430646761, + "node_id": "R_kgDOGasl6Q", + "name": "happy-1", + "full_name": "hapy-new-merry/happy-1", "private": false, "owner": { - "login": "manish33", - "id": 11520775, - "node_id": "MDQ6VXNlcjExNTIwNzc1", - "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "login": "hapy-new-merry", + "id": 87632395, + "node_id": "MDQ6VXNlcjg3NjMyMzk1", + "avatar_url": "https://avatars.githubusercontent.com/u/87632395?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/manish33", - "html_url": "https://github.com/manish33", - "followers_url": "https://api.github.com/users/manish33/followers", - "following_url": "https://api.github.com/users/manish33/following{/other_user}", - "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", - "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", - "organizations_url": "https://api.github.com/users/manish33/orgs", - "repos_url": "https://api.github.com/users/manish33/repos", - "events_url": "https://api.github.com/users/manish33/events{/privacy}", - "received_events_url": "https://api.github.com/users/manish33/received_events", + "url": "https://api.github.com/users/hapy-new-merry", + "html_url": "https://github.com/hapy-new-merry", + "followers_url": "https://api.github.com/users/hapy-new-merry/followers", + "following_url": "https://api.github.com/users/hapy-new-merry/following{/other_user}", + "gists_url": "https://api.github.com/users/hapy-new-merry/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hapy-new-merry/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hapy-new-merry/subscriptions", + "organizations_url": "https://api.github.com/users/hapy-new-merry/orgs", + "repos_url": "https://api.github.com/users/hapy-new-merry/repos", + "events_url": "https://api.github.com/users/hapy-new-merry/events{/privacy}", + "received_events_url": "https://api.github.com/users/hapy-new-merry/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/manish33/Docker", - "description": "Learning Docker by example", + "html_url": "https://github.com/hapy-new-merry/happy-1", + "description": null, "fork": false, - "url": "https://api.github.com/repos/manish33/Docker", - "forks_url": "https://api.github.com/repos/manish33/Docker/forks", - "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/manish33/Docker/teams", - "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", - "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", - "events_url": "https://api.github.com/repos/manish33/Docker/events", - "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", - "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", - "tags_url": "https://api.github.com/repos/manish33/Docker/tags", - "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", - "languages_url": "https://api.github.com/repos/manish33/Docker/languages", - "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", - "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", - "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", - "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", - "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", - "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/manish33/Docker/merges", - "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", - "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", - "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", - "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", - "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", - "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", - "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + "url": "https://api.github.com/repos/hapy-new-merry/happy-1", + "forks_url": "https://api.github.com/repos/hapy-new-merry/happy-1/forks", + "keys_url": "https://api.github.com/repos/hapy-new-merry/happy-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hapy-new-merry/happy-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hapy-new-merry/happy-1/teams", + "hooks_url": "https://api.github.com/repos/hapy-new-merry/happy-1/hooks", + "issue_events_url": "https://api.github.com/repos/hapy-new-merry/happy-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/hapy-new-merry/happy-1/events", + "assignees_url": "https://api.github.com/repos/hapy-new-merry/happy-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/hapy-new-merry/happy-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/hapy-new-merry/happy-1/tags", + "blobs_url": "https://api.github.com/repos/hapy-new-merry/happy-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hapy-new-merry/happy-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hapy-new-merry/happy-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hapy-new-merry/happy-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hapy-new-merry/happy-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hapy-new-merry/happy-1/languages", + "stargazers_url": "https://api.github.com/repos/hapy-new-merry/happy-1/stargazers", + "contributors_url": "https://api.github.com/repos/hapy-new-merry/happy-1/contributors", + "subscribers_url": "https://api.github.com/repos/hapy-new-merry/happy-1/subscribers", + "subscription_url": "https://api.github.com/repos/hapy-new-merry/happy-1/subscription", + "commits_url": "https://api.github.com/repos/hapy-new-merry/happy-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hapy-new-merry/happy-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hapy-new-merry/happy-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hapy-new-merry/happy-1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hapy-new-merry/happy-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/hapy-new-merry/happy-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hapy-new-merry/happy-1/merges", + "archive_url": "https://api.github.com/repos/hapy-new-merry/happy-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hapy-new-merry/happy-1/downloads", + "issues_url": "https://api.github.com/repos/hapy-new-merry/happy-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/hapy-new-merry/happy-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hapy-new-merry/happy-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hapy-new-merry/happy-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hapy-new-merry/happy-1/labels{/name}", + "releases_url": "https://api.github.com/repos/hapy-new-merry/happy-1/releases{/id}", + "deployments_url": "https://api.github.com/repos/hapy-new-merry/happy-1/deployments" }, "score": 1 }, { - "name": "jquery.js", - "path": "Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.js", - "sha": "fc6c299b73e792ef288e785c22393a5df9dded4b", - "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", - "git_url": "https://api.github.com/repositories/325567144/git/blobs/fc6c299b73e792ef288e785c22393a5df9dded4b", - "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.js", + "name": "WCF.Attachment.js", + "path": "wcfsetup/install/files/js/WCF.Attachment.js", + "sha": "5eb11944a8fdd0ebffad3e197f15b10cd757fe9a", + "url": "https://api.github.com/repositories/2048269/contents/wcfsetup/install/files/js/WCF.Attachment.js?ref=318b20fc6bdb0ab5f084dcbfb63c06fbb9c677e4", + "git_url": "https://api.github.com/repositories/2048269/git/blobs/5eb11944a8fdd0ebffad3e197f15b10cd757fe9a", + "html_url": "https://github.com/WoltLab/WCF/blob/318b20fc6bdb0ab5f084dcbfb63c06fbb9c677e4/wcfsetup/install/files/js/WCF.Attachment.js", "repository": { - "id": 325567144, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", - "name": "Docker", - "full_name": "manish33/Docker", + "id": 2048269, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDQ4MjY5", + "name": "WCF", + "full_name": "WoltLab/WCF", "private": false, "owner": { - "login": "manish33", - "id": 11520775, - "node_id": "MDQ6VXNlcjExNTIwNzc1", - "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "login": "WoltLab", + "id": 915384, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjkxNTM4NA==", + "avatar_url": "https://avatars.githubusercontent.com/u/915384?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/manish33", - "html_url": "https://github.com/manish33", - "followers_url": "https://api.github.com/users/manish33/followers", - "following_url": "https://api.github.com/users/manish33/following{/other_user}", - "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", - "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", - "organizations_url": "https://api.github.com/users/manish33/orgs", - "repos_url": "https://api.github.com/users/manish33/repos", - "events_url": "https://api.github.com/users/manish33/events{/privacy}", - "received_events_url": "https://api.github.com/users/manish33/received_events", - "type": "User", + "url": "https://api.github.com/users/WoltLab", + "html_url": "https://github.com/WoltLab", + "followers_url": "https://api.github.com/users/WoltLab/followers", + "following_url": "https://api.github.com/users/WoltLab/following{/other_user}", + "gists_url": "https://api.github.com/users/WoltLab/gists{/gist_id}", + "starred_url": "https://api.github.com/users/WoltLab/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/WoltLab/subscriptions", + "organizations_url": "https://api.github.com/users/WoltLab/orgs", + "repos_url": "https://api.github.com/users/WoltLab/repos", + "events_url": "https://api.github.com/users/WoltLab/events{/privacy}", + "received_events_url": "https://api.github.com/users/WoltLab/received_events", + "type": "Organization", "site_admin": false }, - "html_url": "https://github.com/manish33/Docker", - "description": "Learning Docker by example", + "html_url": "https://github.com/WoltLab/WCF", + "description": "WoltLab Suite Core (previously WoltLab Community Framework)", "fork": false, - "url": "https://api.github.com/repos/manish33/Docker", - "forks_url": "https://api.github.com/repos/manish33/Docker/forks", - "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/manish33/Docker/teams", - "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", - "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", - "events_url": "https://api.github.com/repos/manish33/Docker/events", - "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", - "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", - "tags_url": "https://api.github.com/repos/manish33/Docker/tags", - "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", - "languages_url": "https://api.github.com/repos/manish33/Docker/languages", - "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", - "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", - "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", - "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", - "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", - "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/manish33/Docker/merges", - "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", - "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", - "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", - "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", - "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", - "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", - "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + "url": "https://api.github.com/repos/WoltLab/WCF", + "forks_url": "https://api.github.com/repos/WoltLab/WCF/forks", + "keys_url": "https://api.github.com/repos/WoltLab/WCF/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/WoltLab/WCF/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/WoltLab/WCF/teams", + "hooks_url": "https://api.github.com/repos/WoltLab/WCF/hooks", + "issue_events_url": "https://api.github.com/repos/WoltLab/WCF/issues/events{/number}", + "events_url": "https://api.github.com/repos/WoltLab/WCF/events", + "assignees_url": "https://api.github.com/repos/WoltLab/WCF/assignees{/user}", + "branches_url": "https://api.github.com/repos/WoltLab/WCF/branches{/branch}", + "tags_url": "https://api.github.com/repos/WoltLab/WCF/tags", + "blobs_url": "https://api.github.com/repos/WoltLab/WCF/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/WoltLab/WCF/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/WoltLab/WCF/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/WoltLab/WCF/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/WoltLab/WCF/statuses/{sha}", + "languages_url": "https://api.github.com/repos/WoltLab/WCF/languages", + "stargazers_url": "https://api.github.com/repos/WoltLab/WCF/stargazers", + "contributors_url": "https://api.github.com/repos/WoltLab/WCF/contributors", + "subscribers_url": "https://api.github.com/repos/WoltLab/WCF/subscribers", + "subscription_url": "https://api.github.com/repos/WoltLab/WCF/subscription", + "commits_url": "https://api.github.com/repos/WoltLab/WCF/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/WoltLab/WCF/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/WoltLab/WCF/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/WoltLab/WCF/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/WoltLab/WCF/contents/{+path}", + "compare_url": "https://api.github.com/repos/WoltLab/WCF/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/WoltLab/WCF/merges", + "archive_url": "https://api.github.com/repos/WoltLab/WCF/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/WoltLab/WCF/downloads", + "issues_url": "https://api.github.com/repos/WoltLab/WCF/issues{/number}", + "pulls_url": "https://api.github.com/repos/WoltLab/WCF/pulls{/number}", + "milestones_url": "https://api.github.com/repos/WoltLab/WCF/milestones{/number}", + "notifications_url": "https://api.github.com/repos/WoltLab/WCF/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/WoltLab/WCF/labels{/name}", + "releases_url": "https://api.github.com/repos/WoltLab/WCF/releases{/id}", + "deployments_url": "https://api.github.com/repos/WoltLab/WCF/deployments" }, "score": 1 }, { - "name": "jquery.slim.js", - "path": "Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.slim.js", - "sha": "665bf108c997df270dab6ccfdd3590830eb17268", - "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.slim.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", - "git_url": "https://api.github.com/repositories/325567144/git/blobs/665bf108c997df270dab6ccfdd3590830eb17268", - "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.slim.js", + "name": "search.js", + "path": "js/search.js", + "sha": "93f81927454f4f3b581ba6ee57969b3ed198795d", + "url": "https://api.github.com/repositories/430596936/contents/js/search.js?ref=075c67e2c7f02e58b2f8cfd5fc381a7158a1f0a6", + "git_url": "https://api.github.com/repositories/430596936/git/blobs/93f81927454f4f3b581ba6ee57969b3ed198795d", + "html_url": "https://github.com/zhangly-basefx/zhangly-basefx.github.io/blob/075c67e2c7f02e58b2f8cfd5fc381a7158a1f0a6/js/search.js", "repository": { - "id": 325567144, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", - "name": "Docker", - "full_name": "manish33/Docker", + "id": 430596936, + "node_id": "R_kgDOGapjSA", + "name": "zhangly-basefx.github.io", + "full_name": "zhangly-basefx/zhangly-basefx.github.io", "private": false, "owner": { - "login": "manish33", - "id": 11520775, - "node_id": "MDQ6VXNlcjExNTIwNzc1", - "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "login": "zhangly-basefx", + "id": 21253510, + "node_id": "MDQ6VXNlcjIxMjUzNTEw", + "avatar_url": "https://avatars.githubusercontent.com/u/21253510?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/manish33", - "html_url": "https://github.com/manish33", - "followers_url": "https://api.github.com/users/manish33/followers", - "following_url": "https://api.github.com/users/manish33/following{/other_user}", - "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", - "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", - "organizations_url": "https://api.github.com/users/manish33/orgs", - "repos_url": "https://api.github.com/users/manish33/repos", - "events_url": "https://api.github.com/users/manish33/events{/privacy}", - "received_events_url": "https://api.github.com/users/manish33/received_events", + "url": "https://api.github.com/users/zhangly-basefx", + "html_url": "https://github.com/zhangly-basefx", + "followers_url": "https://api.github.com/users/zhangly-basefx/followers", + "following_url": "https://api.github.com/users/zhangly-basefx/following{/other_user}", + "gists_url": "https://api.github.com/users/zhangly-basefx/gists{/gist_id}", + "starred_url": "https://api.github.com/users/zhangly-basefx/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/zhangly-basefx/subscriptions", + "organizations_url": "https://api.github.com/users/zhangly-basefx/orgs", + "repos_url": "https://api.github.com/users/zhangly-basefx/repos", + "events_url": "https://api.github.com/users/zhangly-basefx/events{/privacy}", + "received_events_url": "https://api.github.com/users/zhangly-basefx/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/manish33/Docker", - "description": "Learning Docker by example", + "html_url": "https://github.com/zhangly-basefx/zhangly-basefx.github.io", + "description": "blog based on hexo", "fork": false, - "url": "https://api.github.com/repos/manish33/Docker", - "forks_url": "https://api.github.com/repos/manish33/Docker/forks", - "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/manish33/Docker/teams", - "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", - "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", - "events_url": "https://api.github.com/repos/manish33/Docker/events", - "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", - "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", - "tags_url": "https://api.github.com/repos/manish33/Docker/tags", - "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", - "languages_url": "https://api.github.com/repos/manish33/Docker/languages", - "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", - "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", - "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", - "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", - "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", - "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/manish33/Docker/merges", - "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", - "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", - "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", - "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", - "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", - "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", - "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + "url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io", + "forks_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/forks", + "keys_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/teams", + "hooks_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/events", + "assignees_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/tags", + "blobs_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/languages", + "stargazers_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/subscription", + "commits_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/merges", + "archive_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/downloads", + "issues_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/deployments" }, "score": 1 }, { - "name": "jquery.slim.js", - "path": "Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.slim.js", - "sha": "665bf108c997df270dab6ccfdd3590830eb17268", - "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.slim.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", - "git_url": "https://api.github.com/repositories/325567144/git/blobs/665bf108c997df270dab6ccfdd3590830eb17268", - "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.slim.js", + "name": "script.js", + "path": "js/script.js", + "sha": "4bd83cb257e7e8c12bb85d0f67c2f144b7a7ef81", + "url": "https://api.github.com/repositories/430596936/contents/js/script.js?ref=075c67e2c7f02e58b2f8cfd5fc381a7158a1f0a6", + "git_url": "https://api.github.com/repositories/430596936/git/blobs/4bd83cb257e7e8c12bb85d0f67c2f144b7a7ef81", + "html_url": "https://github.com/zhangly-basefx/zhangly-basefx.github.io/blob/075c67e2c7f02e58b2f8cfd5fc381a7158a1f0a6/js/script.js", "repository": { - "id": 325567144, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", - "name": "Docker", - "full_name": "manish33/Docker", + "id": 430596936, + "node_id": "R_kgDOGapjSA", + "name": "zhangly-basefx.github.io", + "full_name": "zhangly-basefx/zhangly-basefx.github.io", "private": false, "owner": { - "login": "manish33", - "id": 11520775, - "node_id": "MDQ6VXNlcjExNTIwNzc1", - "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "login": "zhangly-basefx", + "id": 21253510, + "node_id": "MDQ6VXNlcjIxMjUzNTEw", + "avatar_url": "https://avatars.githubusercontent.com/u/21253510?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/manish33", - "html_url": "https://github.com/manish33", - "followers_url": "https://api.github.com/users/manish33/followers", - "following_url": "https://api.github.com/users/manish33/following{/other_user}", - "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", - "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", - "organizations_url": "https://api.github.com/users/manish33/orgs", - "repos_url": "https://api.github.com/users/manish33/repos", - "events_url": "https://api.github.com/users/manish33/events{/privacy}", - "received_events_url": "https://api.github.com/users/manish33/received_events", + "url": "https://api.github.com/users/zhangly-basefx", + "html_url": "https://github.com/zhangly-basefx", + "followers_url": "https://api.github.com/users/zhangly-basefx/followers", + "following_url": "https://api.github.com/users/zhangly-basefx/following{/other_user}", + "gists_url": "https://api.github.com/users/zhangly-basefx/gists{/gist_id}", + "starred_url": "https://api.github.com/users/zhangly-basefx/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/zhangly-basefx/subscriptions", + "organizations_url": "https://api.github.com/users/zhangly-basefx/orgs", + "repos_url": "https://api.github.com/users/zhangly-basefx/repos", + "events_url": "https://api.github.com/users/zhangly-basefx/events{/privacy}", + "received_events_url": "https://api.github.com/users/zhangly-basefx/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/manish33/Docker", - "description": "Learning Docker by example", + "html_url": "https://github.com/zhangly-basefx/zhangly-basefx.github.io", + "description": "blog based on hexo", "fork": false, - "url": "https://api.github.com/repos/manish33/Docker", - "forks_url": "https://api.github.com/repos/manish33/Docker/forks", - "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/manish33/Docker/teams", - "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", - "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", - "events_url": "https://api.github.com/repos/manish33/Docker/events", - "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", - "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", - "tags_url": "https://api.github.com/repos/manish33/Docker/tags", - "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", - "languages_url": "https://api.github.com/repos/manish33/Docker/languages", - "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", - "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", - "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", - "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", - "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", - "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/manish33/Docker/merges", - "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", - "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", - "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", - "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", - "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", - "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", - "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + "url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io", + "forks_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/forks", + "keys_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/teams", + "hooks_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/events", + "assignees_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/tags", + "blobs_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/languages", + "stargazers_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/subscription", + "commits_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/merges", + "archive_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/downloads", + "issues_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/deployments" }, "score": 1 }, { - "name": "sb-admin-2.js", - "path": "Quick_Revision/DockerFileCreation/website/js/sb-admin-2.js", - "sha": "b0412d1510767e144cea19e323354e46b512476f", - "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation/website/js/sb-admin-2.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", - "git_url": "https://api.github.com/repositories/325567144/git/blobs/b0412d1510767e144cea19e323354e46b512476f", - "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation/website/js/sb-admin-2.js", + "name": "accordion.js", + "path": "wp-admin/js/accordion.js", + "sha": "c420e8ccb88efedb9465301a27bff119d4d1e905", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/accordion.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/c420e8ccb88efedb9465301a27bff119d4d1e905", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/accordion.js", "repository": { - "id": 325567144, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", - "name": "Docker", - "full_name": "manish33/Docker", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "manish33", - "id": 11520775, - "node_id": "MDQ6VXNlcjExNTIwNzc1", - "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/manish33", - "html_url": "https://github.com/manish33", - "followers_url": "https://api.github.com/users/manish33/followers", - "following_url": "https://api.github.com/users/manish33/following{/other_user}", - "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", - "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", - "organizations_url": "https://api.github.com/users/manish33/orgs", - "repos_url": "https://api.github.com/users/manish33/repos", - "events_url": "https://api.github.com/users/manish33/events{/privacy}", - "received_events_url": "https://api.github.com/users/manish33/received_events", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/manish33/Docker", - "description": "Learning Docker by example", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/manish33/Docker", - "forks_url": "https://api.github.com/repos/manish33/Docker/forks", - "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/manish33/Docker/teams", - "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", - "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", - "events_url": "https://api.github.com/repos/manish33/Docker/events", - "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", - "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", - "tags_url": "https://api.github.com/repos/manish33/Docker/tags", - "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", - "languages_url": "https://api.github.com/repos/manish33/Docker/languages", - "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", - "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", - "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", - "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", - "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", - "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/manish33/Docker/merges", - "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", - "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", - "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", - "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", - "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", - "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", - "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "sb-admin-2.js", - "path": "Quick_Revision/DockerFileCreation1/website/js/sb-admin-2.js", - "sha": "b0412d1510767e144cea19e323354e46b512476f", - "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation1/website/js/sb-admin-2.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", - "git_url": "https://api.github.com/repositories/325567144/git/blobs/b0412d1510767e144cea19e323354e46b512476f", - "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation1/website/js/sb-admin-2.js", + "name": "post.js", + "path": "wp-admin/js/post.js", + "sha": "b0fca99135f141409ce1f82b3524cf1e06dbb2b5", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/post.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/b0fca99135f141409ce1f82b3524cf1e06dbb2b5", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/post.js", "repository": { - "id": 325567144, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", - "name": "Docker", - "full_name": "manish33/Docker", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "manish33", - "id": 11520775, - "node_id": "MDQ6VXNlcjExNTIwNzc1", - "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/manish33", - "html_url": "https://github.com/manish33", - "followers_url": "https://api.github.com/users/manish33/followers", - "following_url": "https://api.github.com/users/manish33/following{/other_user}", - "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", - "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", - "organizations_url": "https://api.github.com/users/manish33/orgs", - "repos_url": "https://api.github.com/users/manish33/repos", - "events_url": "https://api.github.com/users/manish33/events{/privacy}", - "received_events_url": "https://api.github.com/users/manish33/received_events", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/manish33/Docker", - "description": "Learning Docker by example", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/manish33/Docker", - "forks_url": "https://api.github.com/repos/manish33/Docker/forks", - "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/manish33/Docker/teams", - "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", - "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", - "events_url": "https://api.github.com/repos/manish33/Docker/events", - "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", - "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", - "tags_url": "https://api.github.com/repos/manish33/Docker/tags", - "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", - "languages_url": "https://api.github.com/repos/manish33/Docker/languages", - "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", - "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", - "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", - "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", - "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", - "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/manish33/Docker/merges", - "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", - "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", - "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", - "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", - "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", - "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", - "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "jquery.appear.js", - "path": "js/jquery.appear.js", - "sha": "f320ab2dfb19a7f935f4118f8a32fe95fcf17aab", - "url": "https://api.github.com/repositories/430322211/contents/js/jquery.appear.js?ref=82d4a8fe8951ac5f7dd96315b5e2d5b6f27185d1", - "git_url": "https://api.github.com/repositories/430322211/git/blobs/f320ab2dfb19a7f935f4118f8a32fe95fcf17aab", - "html_url": "https://github.com/mehediemon007/thikana/blob/82d4a8fe8951ac5f7dd96315b5e2d5b6f27185d1/js/jquery.appear.js", + "name": "application-passwords.js", + "path": "wp-admin/js/application-passwords.js", + "sha": "ae9fe43b0c1a5a38edd5fea3f3441140e9563221", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/application-passwords.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/ae9fe43b0c1a5a38edd5fea3f3441140e9563221", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/application-passwords.js", "repository": { - "id": 430322211, - "node_id": "R_kgDOGaYyIw", - "name": "thikana", - "full_name": "mehediemon007/thikana", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "mehediemon007", - "id": 34378422, - "node_id": "MDQ6VXNlcjM0Mzc4NDIy", - "avatar_url": "https://avatars.githubusercontent.com/u/34378422?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/mehediemon007", - "html_url": "https://github.com/mehediemon007", - "followers_url": "https://api.github.com/users/mehediemon007/followers", - "following_url": "https://api.github.com/users/mehediemon007/following{/other_user}", - "gists_url": "https://api.github.com/users/mehediemon007/gists{/gist_id}", - "starred_url": "https://api.github.com/users/mehediemon007/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/mehediemon007/subscriptions", - "organizations_url": "https://api.github.com/users/mehediemon007/orgs", - "repos_url": "https://api.github.com/users/mehediemon007/repos", - "events_url": "https://api.github.com/users/mehediemon007/events{/privacy}", - "received_events_url": "https://api.github.com/users/mehediemon007/received_events", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/mehediemon007/thikana", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/mehediemon007/thikana", - "forks_url": "https://api.github.com/repos/mehediemon007/thikana/forks", - "keys_url": "https://api.github.com/repos/mehediemon007/thikana/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/mehediemon007/thikana/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/mehediemon007/thikana/teams", - "hooks_url": "https://api.github.com/repos/mehediemon007/thikana/hooks", - "issue_events_url": "https://api.github.com/repos/mehediemon007/thikana/issues/events{/number}", - "events_url": "https://api.github.com/repos/mehediemon007/thikana/events", - "assignees_url": "https://api.github.com/repos/mehediemon007/thikana/assignees{/user}", - "branches_url": "https://api.github.com/repos/mehediemon007/thikana/branches{/branch}", - "tags_url": "https://api.github.com/repos/mehediemon007/thikana/tags", - "blobs_url": "https://api.github.com/repos/mehediemon007/thikana/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/mehediemon007/thikana/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/mehediemon007/thikana/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/mehediemon007/thikana/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/mehediemon007/thikana/statuses/{sha}", - "languages_url": "https://api.github.com/repos/mehediemon007/thikana/languages", - "stargazers_url": "https://api.github.com/repos/mehediemon007/thikana/stargazers", - "contributors_url": "https://api.github.com/repos/mehediemon007/thikana/contributors", - "subscribers_url": "https://api.github.com/repos/mehediemon007/thikana/subscribers", - "subscription_url": "https://api.github.com/repos/mehediemon007/thikana/subscription", - "commits_url": "https://api.github.com/repos/mehediemon007/thikana/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/mehediemon007/thikana/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/mehediemon007/thikana/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/mehediemon007/thikana/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/mehediemon007/thikana/contents/{+path}", - "compare_url": "https://api.github.com/repos/mehediemon007/thikana/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/mehediemon007/thikana/merges", - "archive_url": "https://api.github.com/repos/mehediemon007/thikana/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/mehediemon007/thikana/downloads", - "issues_url": "https://api.github.com/repos/mehediemon007/thikana/issues{/number}", - "pulls_url": "https://api.github.com/repos/mehediemon007/thikana/pulls{/number}", - "milestones_url": "https://api.github.com/repos/mehediemon007/thikana/milestones{/number}", - "notifications_url": "https://api.github.com/repos/mehediemon007/thikana/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/mehediemon007/thikana/labels{/name}", - "releases_url": "https://api.github.com/repos/mehediemon007/thikana/releases{/id}", - "deployments_url": "https://api.github.com/repos/mehediemon007/thikana/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "jquery.min.js", - "path": "BTVN_Buoi4/assets/js/jquery.min.js", - "sha": "3f2591b715a06b7627369d7554abf422f97a617f", - "url": "https://api.github.com/repositories/195409608/contents/BTVN_Buoi4/assets/js/jquery.min.js?ref=5090a21048ce18009f8845283e8522f2f1be1adc", - "git_url": "https://api.github.com/repositories/195409608/git/blobs/3f2591b715a06b7627369d7554abf422f97a617f", - "html_url": "https://github.com/ntheanh201/webteamproptit/blob/5090a21048ce18009f8845283e8522f2f1be1adc/BTVN_Buoi4/assets/js/jquery.min.js", + "name": "media-audio-widget.js", + "path": "wp-admin/js/widgets/media-audio-widget.js", + "sha": "a57925364da70cfca0be9ff2cf18224891add99f", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/widgets/media-audio-widget.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/a57925364da70cfca0be9ff2cf18224891add99f", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/widgets/media-audio-widget.js", "repository": { - "id": 195409608, - "node_id": "MDEwOlJlcG9zaXRvcnkxOTU0MDk2MDg=", - "name": "webteamproptit", - "full_name": "ntheanh201/webteamproptit", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "ntheanh201", - "id": 29043139, - "node_id": "MDQ6VXNlcjI5MDQzMTM5", - "avatar_url": "https://avatars.githubusercontent.com/u/29043139?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/ntheanh201", - "html_url": "https://github.com/ntheanh201", - "followers_url": "https://api.github.com/users/ntheanh201/followers", - "following_url": "https://api.github.com/users/ntheanh201/following{/other_user}", - "gists_url": "https://api.github.com/users/ntheanh201/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ntheanh201/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ntheanh201/subscriptions", - "organizations_url": "https://api.github.com/users/ntheanh201/orgs", - "repos_url": "https://api.github.com/users/ntheanh201/repos", - "events_url": "https://api.github.com/users/ntheanh201/events{/privacy}", - "received_events_url": "https://api.github.com/users/ntheanh201/received_events", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/ntheanh201/webteamproptit", - "description": "Quá trình học tập / hoạt động tại Team Web của ProPTIT", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/ntheanh201/webteamproptit", - "forks_url": "https://api.github.com/repos/ntheanh201/webteamproptit/forks", - "keys_url": "https://api.github.com/repos/ntheanh201/webteamproptit/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/ntheanh201/webteamproptit/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/ntheanh201/webteamproptit/teams", - "hooks_url": "https://api.github.com/repos/ntheanh201/webteamproptit/hooks", - "issue_events_url": "https://api.github.com/repos/ntheanh201/webteamproptit/issues/events{/number}", - "events_url": "https://api.github.com/repos/ntheanh201/webteamproptit/events", - "assignees_url": "https://api.github.com/repos/ntheanh201/webteamproptit/assignees{/user}", - "branches_url": "https://api.github.com/repos/ntheanh201/webteamproptit/branches{/branch}", - "tags_url": "https://api.github.com/repos/ntheanh201/webteamproptit/tags", - "blobs_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/ntheanh201/webteamproptit/statuses/{sha}", - "languages_url": "https://api.github.com/repos/ntheanh201/webteamproptit/languages", - "stargazers_url": "https://api.github.com/repos/ntheanh201/webteamproptit/stargazers", - "contributors_url": "https://api.github.com/repos/ntheanh201/webteamproptit/contributors", - "subscribers_url": "https://api.github.com/repos/ntheanh201/webteamproptit/subscribers", - "subscription_url": "https://api.github.com/repos/ntheanh201/webteamproptit/subscription", - "commits_url": "https://api.github.com/repos/ntheanh201/webteamproptit/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/ntheanh201/webteamproptit/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/ntheanh201/webteamproptit/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/ntheanh201/webteamproptit/contents/{+path}", - "compare_url": "https://api.github.com/repos/ntheanh201/webteamproptit/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/ntheanh201/webteamproptit/merges", - "archive_url": "https://api.github.com/repos/ntheanh201/webteamproptit/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/ntheanh201/webteamproptit/downloads", - "issues_url": "https://api.github.com/repos/ntheanh201/webteamproptit/issues{/number}", - "pulls_url": "https://api.github.com/repos/ntheanh201/webteamproptit/pulls{/number}", - "milestones_url": "https://api.github.com/repos/ntheanh201/webteamproptit/milestones{/number}", - "notifications_url": "https://api.github.com/repos/ntheanh201/webteamproptit/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/ntheanh201/webteamproptit/labels{/name}", - "releases_url": "https://api.github.com/repos/ntheanh201/webteamproptit/releases{/id}", - "deployments_url": "https://api.github.com/repos/ntheanh201/webteamproptit/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "onePageScroller.js", - "path": "js/onePageScroller.js", - "sha": "f7e36d300b324f2d3a6e643b3bdbc739da4e2377", - "url": "https://api.github.com/repositories/419427167/contents/js/onePageScroller.js?ref=d6a33dbd6c93068c596efbf5195b7d57a178e0ad", - "git_url": "https://api.github.com/repositories/419427167/git/blobs/f7e36d300b324f2d3a6e643b3bdbc739da4e2377", - "html_url": "https://github.com/Nollldor/Beats/blob/d6a33dbd6c93068c596efbf5195b7d57a178e0ad/js/onePageScroller.js", + "name": "editor-expand.js", + "path": "wp-admin/js/editor-expand.js", + "sha": "a47c548dc9a8f3714c1ecdf7d794d38252df5b25", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/editor-expand.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/a47c548dc9a8f3714c1ecdf7d794d38252df5b25", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/editor-expand.js", "repository": { - "id": 419427167, - "node_id": "R_kgDOGP_zXw", - "name": "Beats", - "full_name": "Nollldor/Beats", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "Nollldor", - "id": 90249246, - "node_id": "MDQ6VXNlcjkwMjQ5MjQ2", - "avatar_url": "https://avatars.githubusercontent.com/u/90249246?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/Nollldor", - "html_url": "https://github.com/Nollldor", - "followers_url": "https://api.github.com/users/Nollldor/followers", - "following_url": "https://api.github.com/users/Nollldor/following{/other_user}", - "gists_url": "https://api.github.com/users/Nollldor/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Nollldor/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Nollldor/subscriptions", - "organizations_url": "https://api.github.com/users/Nollldor/orgs", - "repos_url": "https://api.github.com/users/Nollldor/repos", - "events_url": "https://api.github.com/users/Nollldor/events{/privacy}", - "received_events_url": "https://api.github.com/users/Nollldor/received_events", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/Nollldor/Beats", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/Nollldor/Beats", - "forks_url": "https://api.github.com/repos/Nollldor/Beats/forks", - "keys_url": "https://api.github.com/repos/Nollldor/Beats/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Nollldor/Beats/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Nollldor/Beats/teams", - "hooks_url": "https://api.github.com/repos/Nollldor/Beats/hooks", - "issue_events_url": "https://api.github.com/repos/Nollldor/Beats/issues/events{/number}", - "events_url": "https://api.github.com/repos/Nollldor/Beats/events", - "assignees_url": "https://api.github.com/repos/Nollldor/Beats/assignees{/user}", - "branches_url": "https://api.github.com/repos/Nollldor/Beats/branches{/branch}", - "tags_url": "https://api.github.com/repos/Nollldor/Beats/tags", - "blobs_url": "https://api.github.com/repos/Nollldor/Beats/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Nollldor/Beats/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Nollldor/Beats/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Nollldor/Beats/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Nollldor/Beats/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Nollldor/Beats/languages", - "stargazers_url": "https://api.github.com/repos/Nollldor/Beats/stargazers", - "contributors_url": "https://api.github.com/repos/Nollldor/Beats/contributors", - "subscribers_url": "https://api.github.com/repos/Nollldor/Beats/subscribers", - "subscription_url": "https://api.github.com/repos/Nollldor/Beats/subscription", - "commits_url": "https://api.github.com/repos/Nollldor/Beats/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Nollldor/Beats/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Nollldor/Beats/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Nollldor/Beats/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Nollldor/Beats/contents/{+path}", - "compare_url": "https://api.github.com/repos/Nollldor/Beats/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Nollldor/Beats/merges", - "archive_url": "https://api.github.com/repos/Nollldor/Beats/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Nollldor/Beats/downloads", - "issues_url": "https://api.github.com/repos/Nollldor/Beats/issues{/number}", - "pulls_url": "https://api.github.com/repos/Nollldor/Beats/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Nollldor/Beats/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Nollldor/Beats/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Nollldor/Beats/labels{/name}", - "releases_url": "https://api.github.com/repos/Nollldor/Beats/releases{/id}", - "deployments_url": "https://api.github.com/repos/Nollldor/Beats/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "glightbox.js", - "path": "assets/vendor/glightbox/js/glightbox.js", - "sha": "d885231452a9ff56c7274ef6eba0485e5d9667cc", - "url": "https://api.github.com/repositories/430364298/contents/assets/vendor/glightbox/js/glightbox.js?ref=1069297af9010f23d01d05f4ec6c570c9c0b363d", - "git_url": "https://api.github.com/repositories/430364298/git/blobs/d885231452a9ff56c7274ef6eba0485e5d9667cc", - "html_url": "https://github.com/rushil0310design/rushil0310design.github.io/blob/1069297af9010f23d01d05f4ec6c570c9c0b363d/assets/vendor/glightbox/js/glightbox.js", + "name": "svg-painter.js", + "path": "wp-admin/js/svg-painter.js", + "sha": "a3567354469f55130dbc79a08094b4daa6c18bf3", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/svg-painter.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/a3567354469f55130dbc79a08094b4daa6c18bf3", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/svg-painter.js", "repository": { - "id": 430364298, - "node_id": "R_kgDOGabWig", - "name": "rushil0310design.github.io", - "full_name": "rushil0310design/rushil0310design.github.io", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "rushil0310design", - "id": 94788549, - "node_id": "U_kgDOBaZbxQ", - "avatar_url": "https://avatars.githubusercontent.com/u/94788549?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/rushil0310design", - "html_url": "https://github.com/rushil0310design", - "followers_url": "https://api.github.com/users/rushil0310design/followers", - "following_url": "https://api.github.com/users/rushil0310design/following{/other_user}", - "gists_url": "https://api.github.com/users/rushil0310design/gists{/gist_id}", - "starred_url": "https://api.github.com/users/rushil0310design/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/rushil0310design/subscriptions", - "organizations_url": "https://api.github.com/users/rushil0310design/orgs", - "repos_url": "https://api.github.com/users/rushil0310design/repos", - "events_url": "https://api.github.com/users/rushil0310design/events{/privacy}", - "received_events_url": "https://api.github.com/users/rushil0310design/received_events", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/rushil0310design/rushil0310design.github.io", - "description": "portfolio website", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io", - "forks_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/forks", - "keys_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/teams", - "hooks_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/hooks", - "issue_events_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/issues/events{/number}", - "events_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/events", - "assignees_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/assignees{/user}", - "branches_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/branches{/branch}", - "tags_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/tags", - "blobs_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/statuses/{sha}", - "languages_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/languages", - "stargazers_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/stargazers", - "contributors_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/contributors", - "subscribers_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/subscribers", - "subscription_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/subscription", - "commits_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/contents/{+path}", - "compare_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/merges", - "archive_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/downloads", - "issues_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/issues{/number}", - "pulls_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/pulls{/number}", - "milestones_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/milestones{/number}", - "notifications_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/labels{/name}", - "releases_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/releases{/id}", - "deployments_url": "https://api.github.com/repos/rushil0310design/rushil0310design.github.io/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "skintools.js", - "path": "material/topicon/src/es/Plugin/skintools.js", - "sha": "c07a94108f35224555e1b0e905097fc22cded080", - "url": "https://api.github.com/repositories/429677614/contents/material/topicon/src/es/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/c07a94108f35224555e1b0e905097fc22cded080", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topicon/src/es/Plugin/skintools.js", + "name": "customize-widgets.js", + "path": "wp-admin/js/customize-widgets.js", + "sha": "a33bfe1e78ea50ce4bfa65c1d6636d29263165e4", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/customize-widgets.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/a33bfe1e78ea50ce4bfa65c1d6636d29263165e4", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/customize-widgets.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "skintools.js", - "path": "material/mmenu/src/es/Plugin/skintools.js", - "sha": "f99f35052d8bc871f0a018a0a1d9f0be588cafd8", - "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/f99f35052d8bc871f0a018a0a1d9f0be588cafd8", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Plugin/skintools.js", + "name": "plugin-install.js", + "path": "wp-admin/js/plugin-install.js", + "sha": "9b43b53e13a437ca6794d7c03de3efa5a9c2bfa0", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/plugin-install.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/9b43b53e13a437ca6794d7c03de3efa5a9c2bfa0", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/plugin-install.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "Site.js", - "path": "material/mmenu/src/es/Site.js", - "sha": "f218e901ce0968bd4e65da99add11bce1292e44b", - "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Site.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/f218e901ce0968bd4e65da99add11bce1292e44b", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Site.js", + "name": "auth-app.js", + "path": "wp-admin/js/auth-app.js", + "sha": "99478d1824a2defedee4f312ae9cb18bc7f75352", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/auth-app.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/99478d1824a2defedee4f312ae9cb18bc7f75352", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/auth-app.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "Sidebar.js", - "path": "material/mmenu/src/es/Section/Sidebar.js", - "sha": "ea92853466ca797e14d184f866488b66e942a085", - "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Section/Sidebar.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/ea92853466ca797e14d184f866488b66e942a085", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Section/Sidebar.js", + "name": "edit-comments.js", + "path": "wp-admin/js/edit-comments.js", + "sha": "96ca1f9f48993d536af3a159fd18fc4712bd5421", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/edit-comments.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/96ca1f9f48993d536af3a159fd18fc4712bd5421", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/edit-comments.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "skintools.js", - "path": "material/iconbar/assets/js/Plugin/skintools.js", - "sha": "e700e525d15a0952165d609db039b98fb8ac218f", - "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/assets/js/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/e700e525d15a0952165d609db039b98fb8ac218f", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/assets/js/Plugin/skintools.js", + "name": "customize-nav-menus.js", + "path": "wp-admin/js/customize-nav-menus.js", + "sha": "8930f15ddfcc74778d28aa5dd02b001771d39c6c", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/customize-nav-menus.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/8930f15ddfcc74778d28aa5dd02b001771d39c6c", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/customize-nav-menus.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "editable.js", - "path": "material/topbar/src/examples/es/forms/editable.js", - "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "url": "https://api.github.com/repositories/429677614/contents/material/topbar/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/src/examples/es/forms/editable.js", + "name": "theme-plugin-editor.js", + "path": "wp-admin/js/theme-plugin-editor.js", + "sha": "8871b0432a676c62218426e1c2b6882c871714c7", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/theme-plugin-editor.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/8871b0432a676c62218426e1c2b6882c871714c7", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/theme-plugin-editor.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "editable.js", - "path": "material/topicon/src/examples/es/forms/editable.js", - "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "url": "https://api.github.com/repositories/429677614/contents/material/topicon/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topicon/src/examples/es/forms/editable.js", + "name": "inline-edit-tax.js", + "path": "wp-admin/js/inline-edit-tax.js", + "sha": "86e3498cd1eacedf65c6b908856ffdfe88f9a207", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/inline-edit-tax.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/86e3498cd1eacedf65c6b908856ffdfe88f9a207", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/inline-edit-tax.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "editable.js", - "path": "material/iconbar/src/examples/es/forms/editable.js", - "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/src/examples/es/forms/editable.js", + "name": "revisions.js", + "path": "wp-admin/js/revisions.js", + "sha": "83c2641485208a612626f5252390d8fd15bac637", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/revisions.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/83c2641485208a612626f5252390d8fd15bac637", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/revisions.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" - }, - "score": 1 - }, - { - "name": "editable.js", - "path": "material/mmenu/src/examples/es/forms/editable.js", - "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/examples/es/forms/editable.js", - "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", - "private": false, - "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "PageAside.js", - "path": "material/mmenu/src/es/Section/PageAside.js", - "sha": "e29910db8ab81b8ca54e0e3cfe0c69c14a5a63f9", - "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Section/PageAside.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/e29910db8ab81b8ca54e0e3cfe0c69c14a5a63f9", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Section/PageAside.js", + "name": "theme.js", + "path": "wp-admin/js/theme.js", + "sha": "818c20149688b500d42c0e5d70dbb4cfa96dd8f7", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/theme.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/818c20149688b500d42c0e5d70dbb4cfa96dd8f7", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/theme.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "bootstrap-editable.js", - "path": "material/global/vendor/x-editable/bootstrap-editable.js", - "sha": "dd8138568e29426a6219d36a938124b5c6a4f161", - "url": "https://api.github.com/repositories/429677614/contents/material/global/vendor/x-editable/bootstrap-editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/dd8138568e29426a6219d36a938124b5c6a4f161", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/global/vendor/x-editable/bootstrap-editable.js", + "name": "akismet.js", + "path": "wp-content/plugins/akismet/_inc/akismet.js", + "sha": "7ebac1a5a33eb373e86295dd13402a9aa37dab73", + "url": "https://api.github.com/repositories/430646297/contents/wp-content/plugins/akismet/_inc/akismet.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/7ebac1a5a33eb373e86295dd13402a9aa37dab73", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-content/plugins/akismet/_inc/akismet.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "tether.js", - "path": "material/global/vendor/tether/tether.js", - "sha": "d546ee12a4337742ef86bcc68da7059b3e87495f", - "url": "https://api.github.com/repositories/429677614/contents/material/global/vendor/tether/tether.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/d546ee12a4337742ef86bcc68da7059b3e87495f", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/global/vendor/tether/tether.js", + "name": "media-image-widget.js", + "path": "wp-admin/js/widgets/media-image-widget.js", + "sha": "7d15eff1f8cf148c16c7b9c613c725f4e7c5904d", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/widgets/media-image-widget.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/7d15eff1f8cf148c16c7b9c613c725f4e7c5904d", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/widgets/media-image-widget.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "menu.js", - "path": "material/iconbar/assets/js/Plugin/menu.js", - "sha": "d1ffd81e11415c5356a5e86fb1a21738c9dc3e6b", - "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/assets/js/Plugin/menu.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/d1ffd81e11415c5356a5e86fb1a21738c9dc3e6b", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/assets/js/Plugin/menu.js", + "name": "tags.js", + "path": "wp-admin/js/tags.js", + "sha": "6c25e55537d97f9e6dcebc8fd5a143e587af3501", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/tags.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/6c25e55537d97f9e6dcebc8fd5a143e587af3501", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/tags.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "fb_wall.js", - "path": "material/topbar/assets/examples/js/pages/fb_wall.js", - "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", - "url": "https://api.github.com/repositories/429677614/contents/material/topbar/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/assets/examples/js/pages/fb_wall.js", + "name": "nav-menu.js", + "path": "wp-admin/js/nav-menu.js", + "sha": "655d904bc316c7adffbbca043eafffb3f56e9750", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/nav-menu.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/655d904bc316c7adffbbca043eafffb3f56e9750", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/nav-menu.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "fb_wall.js", - "path": "material/topicon/assets/examples/js/pages/fb_wall.js", - "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", - "url": "https://api.github.com/repositories/429677614/contents/material/topicon/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topicon/assets/examples/js/pages/fb_wall.js", + "name": "common.js", + "path": "wp-admin/js/common.js", + "sha": "636237f0b4f2d9adf2cea9affe01d6714cd4c579", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/common.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/636237f0b4f2d9adf2cea9affe01d6714cd4c579", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/common.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "fb_wall.js", - "path": "material/iconbar/assets/examples/js/pages/fb_wall.js", - "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", - "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/assets/examples/js/pages/fb_wall.js", + "name": "color-picker.js", + "path": "wp-admin/js/color-picker.js", + "sha": "600e0235b3bdbce4552943944058081084e8e444", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/color-picker.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/600e0235b3bdbce4552943944058081084e8e444", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/color-picker.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "fb_wall.js", - "path": "material/mmenu/assets/examples/js/pages/fb_wall.js", - "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", - "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/assets/examples/js/pages/fb_wall.js", + "name": "media-video-widget.js", + "path": "wp-admin/js/widgets/media-video-widget.js", + "sha": "56a8ff1f3d5a43da929e5ede8ef68929f5054db4", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/widgets/media-video-widget.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/56a8ff1f3d5a43da929e5ede8ef68929f5054db4", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/widgets/media-video-widget.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "Taskboard.js", - "path": "material/topbar/src/es/App/Taskboard.js", - "sha": "cece963f68cd8e2d8b60c1be6e7996b1d993be99", - "url": "https://api.github.com/repositories/429677614/contents/material/topbar/src/es/App/Taskboard.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/cece963f68cd8e2d8b60c1be6e7996b1d993be99", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/src/es/App/Taskboard.js", + "name": "postbox.js", + "path": "wp-admin/js/postbox.js", + "sha": "4f521acd93ba3f27ffba2a74fab7274c35fd32c1", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/postbox.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/4f521acd93ba3f27ffba2a74fab7274c35fd32c1", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/postbox.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "Taskboard.js", - "path": "material/iconbar/src/es/App/Taskboard.js", - "sha": "cece963f68cd8e2d8b60c1be6e7996b1d993be99", - "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/src/es/App/Taskboard.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/cece963f68cd8e2d8b60c1be6e7996b1d993be99", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/src/es/App/Taskboard.js", + "name": "comment.js", + "path": "wp-admin/js/comment.js", + "sha": "4e4f3c5ed98d4fbb275d6510565e7049950e0c2b", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/comment.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/4e4f3c5ed98d4fbb275d6510565e7049950e0c2b", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/comment.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "datatable.js", - "path": "material/topbar/src/examples/es/tables/datatable.js", - "sha": "c6905b28e3819cd4a07c737c406cefb0c4329bc3", - "url": "https://api.github.com/repositories/429677614/contents/material/topbar/src/examples/es/tables/datatable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/c6905b28e3819cd4a07c737c406cefb0c4329bc3", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/src/examples/es/tables/datatable.js", + "name": "inline-edit-post.js", + "path": "wp-admin/js/inline-edit-post.js", + "sha": "4d297e0c1afc90a2dbc0e5e2c03a8261ec9c0d41", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/inline-edit-post.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/4d297e0c1afc90a2dbc0e5e2c03a8261ec9c0d41", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/inline-edit-post.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 } diff --git a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-3.json b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-3.json index ab4e8d3a13..f2e11d9c03 100644 --- a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-3.json +++ b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/search_code-3.json @@ -1,2284 +1,2208 @@ { - "total_count": 44033909, + "total_count": 44257787, "incomplete_results": false, "items": [ { - "name": "jquery.js", - "path": "Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.js", - "sha": "fc6c299b73e792ef288e785c22393a5df9dded4b", - "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", - "git_url": "https://api.github.com/repositories/325567144/git/blobs/fc6c299b73e792ef288e785c22393a5df9dded4b", - "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.js", + "name": "ui.js", + "path": "js/editor/js/libs/ui.js", + "sha": "ce3934904e42da9d3734c02121fbd7e5400451bd", + "url": "https://api.github.com/repositories/430651920/contents/js/editor/js/libs/ui.js?ref=c1f24321275b090bf9f1b5e8bb815dc3ab5d2c3d", + "git_url": "https://api.github.com/repositories/430651920/git/blobs/ce3934904e42da9d3734c02121fbd7e5400451bd", + "html_url": "https://github.com/Neto322/Tercer-Parcial-Threejs/blob/c1f24321275b090bf9f1b5e8bb815dc3ab5d2c3d/js/editor/js/libs/ui.js", "repository": { - "id": 325567144, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", - "name": "Docker", - "full_name": "manish33/Docker", + "id": 430651920, + "node_id": "R_kgDOGas6EA", + "name": "Tercer-Parcial-Threejs", + "full_name": "Neto322/Tercer-Parcial-Threejs", "private": false, "owner": { - "login": "manish33", - "id": 11520775, - "node_id": "MDQ6VXNlcjExNTIwNzc1", - "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "login": "Neto322", + "id": 42181276, + "node_id": "MDQ6VXNlcjQyMTgxMjc2", + "avatar_url": "https://avatars.githubusercontent.com/u/42181276?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/manish33", - "html_url": "https://github.com/manish33", - "followers_url": "https://api.github.com/users/manish33/followers", - "following_url": "https://api.github.com/users/manish33/following{/other_user}", - "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", - "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", - "organizations_url": "https://api.github.com/users/manish33/orgs", - "repos_url": "https://api.github.com/users/manish33/repos", - "events_url": "https://api.github.com/users/manish33/events{/privacy}", - "received_events_url": "https://api.github.com/users/manish33/received_events", + "url": "https://api.github.com/users/Neto322", + "html_url": "https://github.com/Neto322", + "followers_url": "https://api.github.com/users/Neto322/followers", + "following_url": "https://api.github.com/users/Neto322/following{/other_user}", + "gists_url": "https://api.github.com/users/Neto322/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Neto322/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Neto322/subscriptions", + "organizations_url": "https://api.github.com/users/Neto322/orgs", + "repos_url": "https://api.github.com/users/Neto322/repos", + "events_url": "https://api.github.com/users/Neto322/events{/privacy}", + "received_events_url": "https://api.github.com/users/Neto322/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/manish33/Docker", - "description": "Learning Docker by example", + "html_url": "https://github.com/Neto322/Tercer-Parcial-Threejs", + "description": null, "fork": false, - "url": "https://api.github.com/repos/manish33/Docker", - "forks_url": "https://api.github.com/repos/manish33/Docker/forks", - "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/manish33/Docker/teams", - "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", - "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", - "events_url": "https://api.github.com/repos/manish33/Docker/events", - "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", - "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", - "tags_url": "https://api.github.com/repos/manish33/Docker/tags", - "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", - "languages_url": "https://api.github.com/repos/manish33/Docker/languages", - "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", - "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", - "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", - "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", - "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", - "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/manish33/Docker/merges", - "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", - "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", - "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", - "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", - "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", - "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", - "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + "url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs", + "forks_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/forks", + "keys_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/teams", + "hooks_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/hooks", + "issue_events_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/issues/events{/number}", + "events_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/events", + "assignees_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/assignees{/user}", + "branches_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/branches{/branch}", + "tags_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/tags", + "blobs_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/languages", + "stargazers_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/stargazers", + "contributors_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/contributors", + "subscribers_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/subscribers", + "subscription_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/subscription", + "commits_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/contents/{+path}", + "compare_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/merges", + "archive_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/downloads", + "issues_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/issues{/number}", + "pulls_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/labels{/name}", + "releases_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/releases{/id}", + "deployments_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/deployments" }, "score": 1 }, { - "name": "jquery.js", - "path": "Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.js", - "sha": "fc6c299b73e792ef288e785c22393a5df9dded4b", - "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", - "git_url": "https://api.github.com/repositories/325567144/git/blobs/fc6c299b73e792ef288e785c22393a5df9dded4b", - "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.js", + "name": "dat.gui.module.js", + "path": "js/examples/jsm/libs/dat.gui.module.js", + "sha": "8693a3ff92aba470ebdab0ec10e4d5dcff387ff5", + "url": "https://api.github.com/repositories/430651920/contents/js/examples/jsm/libs/dat.gui.module.js?ref=c1f24321275b090bf9f1b5e8bb815dc3ab5d2c3d", + "git_url": "https://api.github.com/repositories/430651920/git/blobs/8693a3ff92aba470ebdab0ec10e4d5dcff387ff5", + "html_url": "https://github.com/Neto322/Tercer-Parcial-Threejs/blob/c1f24321275b090bf9f1b5e8bb815dc3ab5d2c3d/js/examples/jsm/libs/dat.gui.module.js", "repository": { - "id": 325567144, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", - "name": "Docker", - "full_name": "manish33/Docker", + "id": 430651920, + "node_id": "R_kgDOGas6EA", + "name": "Tercer-Parcial-Threejs", + "full_name": "Neto322/Tercer-Parcial-Threejs", "private": false, "owner": { - "login": "manish33", - "id": 11520775, - "node_id": "MDQ6VXNlcjExNTIwNzc1", - "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "login": "Neto322", + "id": 42181276, + "node_id": "MDQ6VXNlcjQyMTgxMjc2", + "avatar_url": "https://avatars.githubusercontent.com/u/42181276?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/manish33", - "html_url": "https://github.com/manish33", - "followers_url": "https://api.github.com/users/manish33/followers", - "following_url": "https://api.github.com/users/manish33/following{/other_user}", - "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", - "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", - "organizations_url": "https://api.github.com/users/manish33/orgs", - "repos_url": "https://api.github.com/users/manish33/repos", - "events_url": "https://api.github.com/users/manish33/events{/privacy}", - "received_events_url": "https://api.github.com/users/manish33/received_events", + "url": "https://api.github.com/users/Neto322", + "html_url": "https://github.com/Neto322", + "followers_url": "https://api.github.com/users/Neto322/followers", + "following_url": "https://api.github.com/users/Neto322/following{/other_user}", + "gists_url": "https://api.github.com/users/Neto322/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Neto322/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Neto322/subscriptions", + "organizations_url": "https://api.github.com/users/Neto322/orgs", + "repos_url": "https://api.github.com/users/Neto322/repos", + "events_url": "https://api.github.com/users/Neto322/events{/privacy}", + "received_events_url": "https://api.github.com/users/Neto322/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/manish33/Docker", - "description": "Learning Docker by example", + "html_url": "https://github.com/Neto322/Tercer-Parcial-Threejs", + "description": null, "fork": false, - "url": "https://api.github.com/repos/manish33/Docker", - "forks_url": "https://api.github.com/repos/manish33/Docker/forks", - "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/manish33/Docker/teams", - "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", - "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", - "events_url": "https://api.github.com/repos/manish33/Docker/events", - "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", - "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", - "tags_url": "https://api.github.com/repos/manish33/Docker/tags", - "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", - "languages_url": "https://api.github.com/repos/manish33/Docker/languages", - "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", - "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", - "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", - "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", - "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", - "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/manish33/Docker/merges", - "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", - "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", - "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", - "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", - "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", - "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", - "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + "url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs", + "forks_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/forks", + "keys_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/teams", + "hooks_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/hooks", + "issue_events_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/issues/events{/number}", + "events_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/events", + "assignees_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/assignees{/user}", + "branches_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/branches{/branch}", + "tags_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/tags", + "blobs_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/languages", + "stargazers_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/stargazers", + "contributors_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/contributors", + "subscribers_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/subscribers", + "subscription_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/subscription", + "commits_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/contents/{+path}", + "compare_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/merges", + "archive_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/downloads", + "issues_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/issues{/number}", + "pulls_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/labels{/name}", + "releases_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/releases{/id}", + "deployments_url": "https://api.github.com/repos/Neto322/Tercer-Parcial-Threejs/deployments" }, "score": 1 }, { - "name": "jquery.slim.js", - "path": "Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.slim.js", - "sha": "665bf108c997df270dab6ccfdd3590830eb17268", - "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.slim.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", - "git_url": "https://api.github.com/repositories/325567144/git/blobs/665bf108c997df270dab6ccfdd3590830eb17268", - "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation1/website/vendor/jquery/jquery.slim.js", + "name": "theme.js", + "path": "assets/js/theme.js", + "sha": "26b1635811035776912d279ee10f2bcc0a9ae695", + "url": "https://api.github.com/repositories/430646761/contents/assets/js/theme.js?ref=16c721b09cf58abca241295899aaf0884e519abe", + "git_url": "https://api.github.com/repositories/430646761/git/blobs/26b1635811035776912d279ee10f2bcc0a9ae695", + "html_url": "https://github.com/hapy-new-merry/happy-1/blob/16c721b09cf58abca241295899aaf0884e519abe/assets/js/theme.js", "repository": { - "id": 325567144, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", - "name": "Docker", - "full_name": "manish33/Docker", + "id": 430646761, + "node_id": "R_kgDOGasl6Q", + "name": "happy-1", + "full_name": "hapy-new-merry/happy-1", "private": false, "owner": { - "login": "manish33", - "id": 11520775, - "node_id": "MDQ6VXNlcjExNTIwNzc1", - "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "login": "hapy-new-merry", + "id": 87632395, + "node_id": "MDQ6VXNlcjg3NjMyMzk1", + "avatar_url": "https://avatars.githubusercontent.com/u/87632395?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/manish33", - "html_url": "https://github.com/manish33", - "followers_url": "https://api.github.com/users/manish33/followers", - "following_url": "https://api.github.com/users/manish33/following{/other_user}", - "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", - "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", - "organizations_url": "https://api.github.com/users/manish33/orgs", - "repos_url": "https://api.github.com/users/manish33/repos", - "events_url": "https://api.github.com/users/manish33/events{/privacy}", - "received_events_url": "https://api.github.com/users/manish33/received_events", + "url": "https://api.github.com/users/hapy-new-merry", + "html_url": "https://github.com/hapy-new-merry", + "followers_url": "https://api.github.com/users/hapy-new-merry/followers", + "following_url": "https://api.github.com/users/hapy-new-merry/following{/other_user}", + "gists_url": "https://api.github.com/users/hapy-new-merry/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hapy-new-merry/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hapy-new-merry/subscriptions", + "organizations_url": "https://api.github.com/users/hapy-new-merry/orgs", + "repos_url": "https://api.github.com/users/hapy-new-merry/repos", + "events_url": "https://api.github.com/users/hapy-new-merry/events{/privacy}", + "received_events_url": "https://api.github.com/users/hapy-new-merry/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/manish33/Docker", - "description": "Learning Docker by example", + "html_url": "https://github.com/hapy-new-merry/happy-1", + "description": null, "fork": false, - "url": "https://api.github.com/repos/manish33/Docker", - "forks_url": "https://api.github.com/repos/manish33/Docker/forks", - "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/manish33/Docker/teams", - "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", - "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", - "events_url": "https://api.github.com/repos/manish33/Docker/events", - "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", - "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", - "tags_url": "https://api.github.com/repos/manish33/Docker/tags", - "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", - "languages_url": "https://api.github.com/repos/manish33/Docker/languages", - "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", - "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", - "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", - "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", - "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", - "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/manish33/Docker/merges", - "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", - "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", - "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", - "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", - "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", - "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", - "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + "url": "https://api.github.com/repos/hapy-new-merry/happy-1", + "forks_url": "https://api.github.com/repos/hapy-new-merry/happy-1/forks", + "keys_url": "https://api.github.com/repos/hapy-new-merry/happy-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/hapy-new-merry/happy-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/hapy-new-merry/happy-1/teams", + "hooks_url": "https://api.github.com/repos/hapy-new-merry/happy-1/hooks", + "issue_events_url": "https://api.github.com/repos/hapy-new-merry/happy-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/hapy-new-merry/happy-1/events", + "assignees_url": "https://api.github.com/repos/hapy-new-merry/happy-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/hapy-new-merry/happy-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/hapy-new-merry/happy-1/tags", + "blobs_url": "https://api.github.com/repos/hapy-new-merry/happy-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/hapy-new-merry/happy-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/hapy-new-merry/happy-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/hapy-new-merry/happy-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/hapy-new-merry/happy-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/hapy-new-merry/happy-1/languages", + "stargazers_url": "https://api.github.com/repos/hapy-new-merry/happy-1/stargazers", + "contributors_url": "https://api.github.com/repos/hapy-new-merry/happy-1/contributors", + "subscribers_url": "https://api.github.com/repos/hapy-new-merry/happy-1/subscribers", + "subscription_url": "https://api.github.com/repos/hapy-new-merry/happy-1/subscription", + "commits_url": "https://api.github.com/repos/hapy-new-merry/happy-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/hapy-new-merry/happy-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/hapy-new-merry/happy-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/hapy-new-merry/happy-1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/hapy-new-merry/happy-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/hapy-new-merry/happy-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/hapy-new-merry/happy-1/merges", + "archive_url": "https://api.github.com/repos/hapy-new-merry/happy-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/hapy-new-merry/happy-1/downloads", + "issues_url": "https://api.github.com/repos/hapy-new-merry/happy-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/hapy-new-merry/happy-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/hapy-new-merry/happy-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/hapy-new-merry/happy-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/hapy-new-merry/happy-1/labels{/name}", + "releases_url": "https://api.github.com/repos/hapy-new-merry/happy-1/releases{/id}", + "deployments_url": "https://api.github.com/repos/hapy-new-merry/happy-1/deployments" }, "score": 1 }, { - "name": "jquery.slim.js", - "path": "Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.slim.js", - "sha": "665bf108c997df270dab6ccfdd3590830eb17268", - "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.slim.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", - "git_url": "https://api.github.com/repositories/325567144/git/blobs/665bf108c997df270dab6ccfdd3590830eb17268", - "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation/website/vendor/jquery/jquery.slim.js", + "name": "WCF.Attachment.js", + "path": "wcfsetup/install/files/js/WCF.Attachment.js", + "sha": "5eb11944a8fdd0ebffad3e197f15b10cd757fe9a", + "url": "https://api.github.com/repositories/2048269/contents/wcfsetup/install/files/js/WCF.Attachment.js?ref=318b20fc6bdb0ab5f084dcbfb63c06fbb9c677e4", + "git_url": "https://api.github.com/repositories/2048269/git/blobs/5eb11944a8fdd0ebffad3e197f15b10cd757fe9a", + "html_url": "https://github.com/WoltLab/WCF/blob/318b20fc6bdb0ab5f084dcbfb63c06fbb9c677e4/wcfsetup/install/files/js/WCF.Attachment.js", "repository": { - "id": 325567144, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", - "name": "Docker", - "full_name": "manish33/Docker", + "id": 2048269, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDQ4MjY5", + "name": "WCF", + "full_name": "WoltLab/WCF", "private": false, "owner": { - "login": "manish33", - "id": 11520775, - "node_id": "MDQ6VXNlcjExNTIwNzc1", - "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "login": "WoltLab", + "id": 915384, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjkxNTM4NA==", + "avatar_url": "https://avatars.githubusercontent.com/u/915384?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/manish33", - "html_url": "https://github.com/manish33", - "followers_url": "https://api.github.com/users/manish33/followers", - "following_url": "https://api.github.com/users/manish33/following{/other_user}", - "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", - "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", - "organizations_url": "https://api.github.com/users/manish33/orgs", - "repos_url": "https://api.github.com/users/manish33/repos", - "events_url": "https://api.github.com/users/manish33/events{/privacy}", - "received_events_url": "https://api.github.com/users/manish33/received_events", - "type": "User", + "url": "https://api.github.com/users/WoltLab", + "html_url": "https://github.com/WoltLab", + "followers_url": "https://api.github.com/users/WoltLab/followers", + "following_url": "https://api.github.com/users/WoltLab/following{/other_user}", + "gists_url": "https://api.github.com/users/WoltLab/gists{/gist_id}", + "starred_url": "https://api.github.com/users/WoltLab/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/WoltLab/subscriptions", + "organizations_url": "https://api.github.com/users/WoltLab/orgs", + "repos_url": "https://api.github.com/users/WoltLab/repos", + "events_url": "https://api.github.com/users/WoltLab/events{/privacy}", + "received_events_url": "https://api.github.com/users/WoltLab/received_events", + "type": "Organization", "site_admin": false }, - "html_url": "https://github.com/manish33/Docker", - "description": "Learning Docker by example", + "html_url": "https://github.com/WoltLab/WCF", + "description": "WoltLab Suite Core (previously WoltLab Community Framework)", "fork": false, - "url": "https://api.github.com/repos/manish33/Docker", - "forks_url": "https://api.github.com/repos/manish33/Docker/forks", - "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/manish33/Docker/teams", - "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", - "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", - "events_url": "https://api.github.com/repos/manish33/Docker/events", - "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", - "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", - "tags_url": "https://api.github.com/repos/manish33/Docker/tags", - "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", - "languages_url": "https://api.github.com/repos/manish33/Docker/languages", - "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", - "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", - "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", - "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", - "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", - "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/manish33/Docker/merges", - "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", - "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", - "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", - "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", - "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", - "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", - "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + "url": "https://api.github.com/repos/WoltLab/WCF", + "forks_url": "https://api.github.com/repos/WoltLab/WCF/forks", + "keys_url": "https://api.github.com/repos/WoltLab/WCF/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/WoltLab/WCF/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/WoltLab/WCF/teams", + "hooks_url": "https://api.github.com/repos/WoltLab/WCF/hooks", + "issue_events_url": "https://api.github.com/repos/WoltLab/WCF/issues/events{/number}", + "events_url": "https://api.github.com/repos/WoltLab/WCF/events", + "assignees_url": "https://api.github.com/repos/WoltLab/WCF/assignees{/user}", + "branches_url": "https://api.github.com/repos/WoltLab/WCF/branches{/branch}", + "tags_url": "https://api.github.com/repos/WoltLab/WCF/tags", + "blobs_url": "https://api.github.com/repos/WoltLab/WCF/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/WoltLab/WCF/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/WoltLab/WCF/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/WoltLab/WCF/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/WoltLab/WCF/statuses/{sha}", + "languages_url": "https://api.github.com/repos/WoltLab/WCF/languages", + "stargazers_url": "https://api.github.com/repos/WoltLab/WCF/stargazers", + "contributors_url": "https://api.github.com/repos/WoltLab/WCF/contributors", + "subscribers_url": "https://api.github.com/repos/WoltLab/WCF/subscribers", + "subscription_url": "https://api.github.com/repos/WoltLab/WCF/subscription", + "commits_url": "https://api.github.com/repos/WoltLab/WCF/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/WoltLab/WCF/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/WoltLab/WCF/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/WoltLab/WCF/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/WoltLab/WCF/contents/{+path}", + "compare_url": "https://api.github.com/repos/WoltLab/WCF/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/WoltLab/WCF/merges", + "archive_url": "https://api.github.com/repos/WoltLab/WCF/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/WoltLab/WCF/downloads", + "issues_url": "https://api.github.com/repos/WoltLab/WCF/issues{/number}", + "pulls_url": "https://api.github.com/repos/WoltLab/WCF/pulls{/number}", + "milestones_url": "https://api.github.com/repos/WoltLab/WCF/milestones{/number}", + "notifications_url": "https://api.github.com/repos/WoltLab/WCF/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/WoltLab/WCF/labels{/name}", + "releases_url": "https://api.github.com/repos/WoltLab/WCF/releases{/id}", + "deployments_url": "https://api.github.com/repos/WoltLab/WCF/deployments" }, "score": 1 }, { - "name": "sb-admin-2.js", - "path": "Quick_Revision/DockerFileCreation/website/js/sb-admin-2.js", - "sha": "b0412d1510767e144cea19e323354e46b512476f", - "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation/website/js/sb-admin-2.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", - "git_url": "https://api.github.com/repositories/325567144/git/blobs/b0412d1510767e144cea19e323354e46b512476f", - "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation/website/js/sb-admin-2.js", + "name": "search.js", + "path": "js/search.js", + "sha": "93f81927454f4f3b581ba6ee57969b3ed198795d", + "url": "https://api.github.com/repositories/430596936/contents/js/search.js?ref=075c67e2c7f02e58b2f8cfd5fc381a7158a1f0a6", + "git_url": "https://api.github.com/repositories/430596936/git/blobs/93f81927454f4f3b581ba6ee57969b3ed198795d", + "html_url": "https://github.com/zhangly-basefx/zhangly-basefx.github.io/blob/075c67e2c7f02e58b2f8cfd5fc381a7158a1f0a6/js/search.js", "repository": { - "id": 325567144, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", - "name": "Docker", - "full_name": "manish33/Docker", + "id": 430596936, + "node_id": "R_kgDOGapjSA", + "name": "zhangly-basefx.github.io", + "full_name": "zhangly-basefx/zhangly-basefx.github.io", "private": false, "owner": { - "login": "manish33", - "id": 11520775, - "node_id": "MDQ6VXNlcjExNTIwNzc1", - "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "login": "zhangly-basefx", + "id": 21253510, + "node_id": "MDQ6VXNlcjIxMjUzNTEw", + "avatar_url": "https://avatars.githubusercontent.com/u/21253510?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/manish33", - "html_url": "https://github.com/manish33", - "followers_url": "https://api.github.com/users/manish33/followers", - "following_url": "https://api.github.com/users/manish33/following{/other_user}", - "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", - "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", - "organizations_url": "https://api.github.com/users/manish33/orgs", - "repos_url": "https://api.github.com/users/manish33/repos", - "events_url": "https://api.github.com/users/manish33/events{/privacy}", - "received_events_url": "https://api.github.com/users/manish33/received_events", + "url": "https://api.github.com/users/zhangly-basefx", + "html_url": "https://github.com/zhangly-basefx", + "followers_url": "https://api.github.com/users/zhangly-basefx/followers", + "following_url": "https://api.github.com/users/zhangly-basefx/following{/other_user}", + "gists_url": "https://api.github.com/users/zhangly-basefx/gists{/gist_id}", + "starred_url": "https://api.github.com/users/zhangly-basefx/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/zhangly-basefx/subscriptions", + "organizations_url": "https://api.github.com/users/zhangly-basefx/orgs", + "repos_url": "https://api.github.com/users/zhangly-basefx/repos", + "events_url": "https://api.github.com/users/zhangly-basefx/events{/privacy}", + "received_events_url": "https://api.github.com/users/zhangly-basefx/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/manish33/Docker", - "description": "Learning Docker by example", + "html_url": "https://github.com/zhangly-basefx/zhangly-basefx.github.io", + "description": "blog based on hexo", "fork": false, - "url": "https://api.github.com/repos/manish33/Docker", - "forks_url": "https://api.github.com/repos/manish33/Docker/forks", - "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/manish33/Docker/teams", - "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", - "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", - "events_url": "https://api.github.com/repos/manish33/Docker/events", - "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", - "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", - "tags_url": "https://api.github.com/repos/manish33/Docker/tags", - "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", - "languages_url": "https://api.github.com/repos/manish33/Docker/languages", - "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", - "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", - "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", - "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", - "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", - "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/manish33/Docker/merges", - "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", - "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", - "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", - "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", - "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", - "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", - "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + "url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io", + "forks_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/forks", + "keys_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/teams", + "hooks_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/events", + "assignees_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/tags", + "blobs_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/languages", + "stargazers_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/subscription", + "commits_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/merges", + "archive_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/downloads", + "issues_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/deployments" }, "score": 1 }, { - "name": "sb-admin-2.js", - "path": "Quick_Revision/DockerFileCreation1/website/js/sb-admin-2.js", - "sha": "b0412d1510767e144cea19e323354e46b512476f", - "url": "https://api.github.com/repositories/325567144/contents/Quick_Revision/DockerFileCreation1/website/js/sb-admin-2.js?ref=21d68168f027302e5b0aecefe8fd0f7dc61be629", - "git_url": "https://api.github.com/repositories/325567144/git/blobs/b0412d1510767e144cea19e323354e46b512476f", - "html_url": "https://github.com/manish33/Docker/blob/21d68168f027302e5b0aecefe8fd0f7dc61be629/Quick_Revision/DockerFileCreation1/website/js/sb-admin-2.js", + "name": "script.js", + "path": "js/script.js", + "sha": "4bd83cb257e7e8c12bb85d0f67c2f144b7a7ef81", + "url": "https://api.github.com/repositories/430596936/contents/js/script.js?ref=075c67e2c7f02e58b2f8cfd5fc381a7158a1f0a6", + "git_url": "https://api.github.com/repositories/430596936/git/blobs/4bd83cb257e7e8c12bb85d0f67c2f144b7a7ef81", + "html_url": "https://github.com/zhangly-basefx/zhangly-basefx.github.io/blob/075c67e2c7f02e58b2f8cfd5fc381a7158a1f0a6/js/script.js", "repository": { - "id": 325567144, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjU1NjcxNDQ=", - "name": "Docker", - "full_name": "manish33/Docker", + "id": 430596936, + "node_id": "R_kgDOGapjSA", + "name": "zhangly-basefx.github.io", + "full_name": "zhangly-basefx/zhangly-basefx.github.io", "private": false, "owner": { - "login": "manish33", - "id": 11520775, - "node_id": "MDQ6VXNlcjExNTIwNzc1", - "avatar_url": "https://avatars.githubusercontent.com/u/11520775?v=4", + "login": "zhangly-basefx", + "id": 21253510, + "node_id": "MDQ6VXNlcjIxMjUzNTEw", + "avatar_url": "https://avatars.githubusercontent.com/u/21253510?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/manish33", - "html_url": "https://github.com/manish33", - "followers_url": "https://api.github.com/users/manish33/followers", - "following_url": "https://api.github.com/users/manish33/following{/other_user}", - "gists_url": "https://api.github.com/users/manish33/gists{/gist_id}", - "starred_url": "https://api.github.com/users/manish33/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/manish33/subscriptions", - "organizations_url": "https://api.github.com/users/manish33/orgs", - "repos_url": "https://api.github.com/users/manish33/repos", - "events_url": "https://api.github.com/users/manish33/events{/privacy}", - "received_events_url": "https://api.github.com/users/manish33/received_events", + "url": "https://api.github.com/users/zhangly-basefx", + "html_url": "https://github.com/zhangly-basefx", + "followers_url": "https://api.github.com/users/zhangly-basefx/followers", + "following_url": "https://api.github.com/users/zhangly-basefx/following{/other_user}", + "gists_url": "https://api.github.com/users/zhangly-basefx/gists{/gist_id}", + "starred_url": "https://api.github.com/users/zhangly-basefx/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/zhangly-basefx/subscriptions", + "organizations_url": "https://api.github.com/users/zhangly-basefx/orgs", + "repos_url": "https://api.github.com/users/zhangly-basefx/repos", + "events_url": "https://api.github.com/users/zhangly-basefx/events{/privacy}", + "received_events_url": "https://api.github.com/users/zhangly-basefx/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/manish33/Docker", - "description": "Learning Docker by example", + "html_url": "https://github.com/zhangly-basefx/zhangly-basefx.github.io", + "description": "blog based on hexo", "fork": false, - "url": "https://api.github.com/repos/manish33/Docker", - "forks_url": "https://api.github.com/repos/manish33/Docker/forks", - "keys_url": "https://api.github.com/repos/manish33/Docker/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/manish33/Docker/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/manish33/Docker/teams", - "hooks_url": "https://api.github.com/repos/manish33/Docker/hooks", - "issue_events_url": "https://api.github.com/repos/manish33/Docker/issues/events{/number}", - "events_url": "https://api.github.com/repos/manish33/Docker/events", - "assignees_url": "https://api.github.com/repos/manish33/Docker/assignees{/user}", - "branches_url": "https://api.github.com/repos/manish33/Docker/branches{/branch}", - "tags_url": "https://api.github.com/repos/manish33/Docker/tags", - "blobs_url": "https://api.github.com/repos/manish33/Docker/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/manish33/Docker/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/manish33/Docker/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/manish33/Docker/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/manish33/Docker/statuses/{sha}", - "languages_url": "https://api.github.com/repos/manish33/Docker/languages", - "stargazers_url": "https://api.github.com/repos/manish33/Docker/stargazers", - "contributors_url": "https://api.github.com/repos/manish33/Docker/contributors", - "subscribers_url": "https://api.github.com/repos/manish33/Docker/subscribers", - "subscription_url": "https://api.github.com/repos/manish33/Docker/subscription", - "commits_url": "https://api.github.com/repos/manish33/Docker/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/manish33/Docker/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/manish33/Docker/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/manish33/Docker/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/manish33/Docker/contents/{+path}", - "compare_url": "https://api.github.com/repos/manish33/Docker/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/manish33/Docker/merges", - "archive_url": "https://api.github.com/repos/manish33/Docker/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/manish33/Docker/downloads", - "issues_url": "https://api.github.com/repos/manish33/Docker/issues{/number}", - "pulls_url": "https://api.github.com/repos/manish33/Docker/pulls{/number}", - "milestones_url": "https://api.github.com/repos/manish33/Docker/milestones{/number}", - "notifications_url": "https://api.github.com/repos/manish33/Docker/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/manish33/Docker/labels{/name}", - "releases_url": "https://api.github.com/repos/manish33/Docker/releases{/id}", - "deployments_url": "https://api.github.com/repos/manish33/Docker/deployments" + "url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io", + "forks_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/forks", + "keys_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/teams", + "hooks_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/events", + "assignees_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/tags", + "blobs_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/languages", + "stargazers_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/subscription", + "commits_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/merges", + "archive_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/downloads", + "issues_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/zhangly-basefx/zhangly-basefx.github.io/deployments" }, "score": 1 }, { - "name": "jquery.appear.js", - "path": "js/jquery.appear.js", - "sha": "f320ab2dfb19a7f935f4118f8a32fe95fcf17aab", - "url": "https://api.github.com/repositories/430322211/contents/js/jquery.appear.js?ref=82d4a8fe8951ac5f7dd96315b5e2d5b6f27185d1", - "git_url": "https://api.github.com/repositories/430322211/git/blobs/f320ab2dfb19a7f935f4118f8a32fe95fcf17aab", - "html_url": "https://github.com/mehediemon007/thikana/blob/82d4a8fe8951ac5f7dd96315b5e2d5b6f27185d1/js/jquery.appear.js", + "name": "user-suggest.js", + "path": "wp-admin/js/user-suggest.js", + "sha": "f05b7ffa8892fd517d228ab1401ed62e782c1919", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/user-suggest.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/f05b7ffa8892fd517d228ab1401ed62e782c1919", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/user-suggest.js", "repository": { - "id": 430322211, - "node_id": "R_kgDOGaYyIw", - "name": "thikana", - "full_name": "mehediemon007/thikana", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "mehediemon007", - "id": 34378422, - "node_id": "MDQ6VXNlcjM0Mzc4NDIy", - "avatar_url": "https://avatars.githubusercontent.com/u/34378422?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/mehediemon007", - "html_url": "https://github.com/mehediemon007", - "followers_url": "https://api.github.com/users/mehediemon007/followers", - "following_url": "https://api.github.com/users/mehediemon007/following{/other_user}", - "gists_url": "https://api.github.com/users/mehediemon007/gists{/gist_id}", - "starred_url": "https://api.github.com/users/mehediemon007/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/mehediemon007/subscriptions", - "organizations_url": "https://api.github.com/users/mehediemon007/orgs", - "repos_url": "https://api.github.com/users/mehediemon007/repos", - "events_url": "https://api.github.com/users/mehediemon007/events{/privacy}", - "received_events_url": "https://api.github.com/users/mehediemon007/received_events", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/mehediemon007/thikana", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/mehediemon007/thikana", - "forks_url": "https://api.github.com/repos/mehediemon007/thikana/forks", - "keys_url": "https://api.github.com/repos/mehediemon007/thikana/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/mehediemon007/thikana/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/mehediemon007/thikana/teams", - "hooks_url": "https://api.github.com/repos/mehediemon007/thikana/hooks", - "issue_events_url": "https://api.github.com/repos/mehediemon007/thikana/issues/events{/number}", - "events_url": "https://api.github.com/repos/mehediemon007/thikana/events", - "assignees_url": "https://api.github.com/repos/mehediemon007/thikana/assignees{/user}", - "branches_url": "https://api.github.com/repos/mehediemon007/thikana/branches{/branch}", - "tags_url": "https://api.github.com/repos/mehediemon007/thikana/tags", - "blobs_url": "https://api.github.com/repos/mehediemon007/thikana/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/mehediemon007/thikana/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/mehediemon007/thikana/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/mehediemon007/thikana/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/mehediemon007/thikana/statuses/{sha}", - "languages_url": "https://api.github.com/repos/mehediemon007/thikana/languages", - "stargazers_url": "https://api.github.com/repos/mehediemon007/thikana/stargazers", - "contributors_url": "https://api.github.com/repos/mehediemon007/thikana/contributors", - "subscribers_url": "https://api.github.com/repos/mehediemon007/thikana/subscribers", - "subscription_url": "https://api.github.com/repos/mehediemon007/thikana/subscription", - "commits_url": "https://api.github.com/repos/mehediemon007/thikana/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/mehediemon007/thikana/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/mehediemon007/thikana/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/mehediemon007/thikana/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/mehediemon007/thikana/contents/{+path}", - "compare_url": "https://api.github.com/repos/mehediemon007/thikana/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/mehediemon007/thikana/merges", - "archive_url": "https://api.github.com/repos/mehediemon007/thikana/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/mehediemon007/thikana/downloads", - "issues_url": "https://api.github.com/repos/mehediemon007/thikana/issues{/number}", - "pulls_url": "https://api.github.com/repos/mehediemon007/thikana/pulls{/number}", - "milestones_url": "https://api.github.com/repos/mehediemon007/thikana/milestones{/number}", - "notifications_url": "https://api.github.com/repos/mehediemon007/thikana/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/mehediemon007/thikana/labels{/name}", - "releases_url": "https://api.github.com/repos/mehediemon007/thikana/releases{/id}", - "deployments_url": "https://api.github.com/repos/mehediemon007/thikana/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "jquery.min.js", - "path": "BTVN_Buoi4/assets/js/jquery.min.js", - "sha": "3f2591b715a06b7627369d7554abf422f97a617f", - "url": "https://api.github.com/repositories/195409608/contents/BTVN_Buoi4/assets/js/jquery.min.js?ref=5090a21048ce18009f8845283e8522f2f1be1adc", - "git_url": "https://api.github.com/repositories/195409608/git/blobs/3f2591b715a06b7627369d7554abf422f97a617f", - "html_url": "https://github.com/ntheanh201/webteamproptit/blob/5090a21048ce18009f8845283e8522f2f1be1adc/BTVN_Buoi4/assets/js/jquery.min.js", + "name": "text-widgets.js", + "path": "wp-admin/js/widgets/text-widgets.js", + "sha": "ee4dbb9529161bfea9bf345a2b2a62fac3ef2837", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/widgets/text-widgets.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/ee4dbb9529161bfea9bf345a2b2a62fac3ef2837", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/widgets/text-widgets.js", "repository": { - "id": 195409608, - "node_id": "MDEwOlJlcG9zaXRvcnkxOTU0MDk2MDg=", - "name": "webteamproptit", - "full_name": "ntheanh201/webteamproptit", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "ntheanh201", - "id": 29043139, - "node_id": "MDQ6VXNlcjI5MDQzMTM5", - "avatar_url": "https://avatars.githubusercontent.com/u/29043139?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/ntheanh201", - "html_url": "https://github.com/ntheanh201", - "followers_url": "https://api.github.com/users/ntheanh201/followers", - "following_url": "https://api.github.com/users/ntheanh201/following{/other_user}", - "gists_url": "https://api.github.com/users/ntheanh201/gists{/gist_id}", - "starred_url": "https://api.github.com/users/ntheanh201/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/ntheanh201/subscriptions", - "organizations_url": "https://api.github.com/users/ntheanh201/orgs", - "repos_url": "https://api.github.com/users/ntheanh201/repos", - "events_url": "https://api.github.com/users/ntheanh201/events{/privacy}", - "received_events_url": "https://api.github.com/users/ntheanh201/received_events", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/ntheanh201/webteamproptit", - "description": "Quá trình học tập / hoạt động tại Team Web của ProPTIT", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/ntheanh201/webteamproptit", - "forks_url": "https://api.github.com/repos/ntheanh201/webteamproptit/forks", - "keys_url": "https://api.github.com/repos/ntheanh201/webteamproptit/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/ntheanh201/webteamproptit/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/ntheanh201/webteamproptit/teams", - "hooks_url": "https://api.github.com/repos/ntheanh201/webteamproptit/hooks", - "issue_events_url": "https://api.github.com/repos/ntheanh201/webteamproptit/issues/events{/number}", - "events_url": "https://api.github.com/repos/ntheanh201/webteamproptit/events", - "assignees_url": "https://api.github.com/repos/ntheanh201/webteamproptit/assignees{/user}", - "branches_url": "https://api.github.com/repos/ntheanh201/webteamproptit/branches{/branch}", - "tags_url": "https://api.github.com/repos/ntheanh201/webteamproptit/tags", - "blobs_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/ntheanh201/webteamproptit/statuses/{sha}", - "languages_url": "https://api.github.com/repos/ntheanh201/webteamproptit/languages", - "stargazers_url": "https://api.github.com/repos/ntheanh201/webteamproptit/stargazers", - "contributors_url": "https://api.github.com/repos/ntheanh201/webteamproptit/contributors", - "subscribers_url": "https://api.github.com/repos/ntheanh201/webteamproptit/subscribers", - "subscription_url": "https://api.github.com/repos/ntheanh201/webteamproptit/subscription", - "commits_url": "https://api.github.com/repos/ntheanh201/webteamproptit/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/ntheanh201/webteamproptit/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/ntheanh201/webteamproptit/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/ntheanh201/webteamproptit/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/ntheanh201/webteamproptit/contents/{+path}", - "compare_url": "https://api.github.com/repos/ntheanh201/webteamproptit/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/ntheanh201/webteamproptit/merges", - "archive_url": "https://api.github.com/repos/ntheanh201/webteamproptit/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/ntheanh201/webteamproptit/downloads", - "issues_url": "https://api.github.com/repos/ntheanh201/webteamproptit/issues{/number}", - "pulls_url": "https://api.github.com/repos/ntheanh201/webteamproptit/pulls{/number}", - "milestones_url": "https://api.github.com/repos/ntheanh201/webteamproptit/milestones{/number}", - "notifications_url": "https://api.github.com/repos/ntheanh201/webteamproptit/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/ntheanh201/webteamproptit/labels{/name}", - "releases_url": "https://api.github.com/repos/ntheanh201/webteamproptit/releases{/id}", - "deployments_url": "https://api.github.com/repos/ntheanh201/webteamproptit/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "onePageScroller.js", - "path": "js/onePageScroller.js", - "sha": "f7e36d300b324f2d3a6e643b3bdbc739da4e2377", - "url": "https://api.github.com/repositories/419427167/contents/js/onePageScroller.js?ref=d6a33dbd6c93068c596efbf5195b7d57a178e0ad", - "git_url": "https://api.github.com/repositories/419427167/git/blobs/f7e36d300b324f2d3a6e643b3bdbc739da4e2377", - "html_url": "https://github.com/Nollldor/Beats/blob/d6a33dbd6c93068c596efbf5195b7d57a178e0ad/js/onePageScroller.js", + "name": "site-health.js", + "path": "wp-admin/js/site-health.js", + "sha": "e9e5c06bdbb583dce843b6845d88b84d5ffdcafb", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/site-health.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/e9e5c06bdbb583dce843b6845d88b84d5ffdcafb", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/site-health.js", "repository": { - "id": 419427167, - "node_id": "R_kgDOGP_zXw", - "name": "Beats", - "full_name": "Nollldor/Beats", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "Nollldor", - "id": 90249246, - "node_id": "MDQ6VXNlcjkwMjQ5MjQ2", - "avatar_url": "https://avatars.githubusercontent.com/u/90249246?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/Nollldor", - "html_url": "https://github.com/Nollldor", - "followers_url": "https://api.github.com/users/Nollldor/followers", - "following_url": "https://api.github.com/users/Nollldor/following{/other_user}", - "gists_url": "https://api.github.com/users/Nollldor/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Nollldor/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Nollldor/subscriptions", - "organizations_url": "https://api.github.com/users/Nollldor/orgs", - "repos_url": "https://api.github.com/users/Nollldor/repos", - "events_url": "https://api.github.com/users/Nollldor/events{/privacy}", - "received_events_url": "https://api.github.com/users/Nollldor/received_events", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", "type": "User", "site_admin": false }, - "html_url": "https://github.com/Nollldor/Beats", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Nollldor/Beats", - "forks_url": "https://api.github.com/repos/Nollldor/Beats/forks", - "keys_url": "https://api.github.com/repos/Nollldor/Beats/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Nollldor/Beats/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Nollldor/Beats/teams", - "hooks_url": "https://api.github.com/repos/Nollldor/Beats/hooks", - "issue_events_url": "https://api.github.com/repos/Nollldor/Beats/issues/events{/number}", - "events_url": "https://api.github.com/repos/Nollldor/Beats/events", - "assignees_url": "https://api.github.com/repos/Nollldor/Beats/assignees{/user}", - "branches_url": "https://api.github.com/repos/Nollldor/Beats/branches{/branch}", - "tags_url": "https://api.github.com/repos/Nollldor/Beats/tags", - "blobs_url": "https://api.github.com/repos/Nollldor/Beats/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Nollldor/Beats/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Nollldor/Beats/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Nollldor/Beats/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Nollldor/Beats/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Nollldor/Beats/languages", - "stargazers_url": "https://api.github.com/repos/Nollldor/Beats/stargazers", - "contributors_url": "https://api.github.com/repos/Nollldor/Beats/contributors", - "subscribers_url": "https://api.github.com/repos/Nollldor/Beats/subscribers", - "subscription_url": "https://api.github.com/repos/Nollldor/Beats/subscription", - "commits_url": "https://api.github.com/repos/Nollldor/Beats/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Nollldor/Beats/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Nollldor/Beats/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Nollldor/Beats/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Nollldor/Beats/contents/{+path}", - "compare_url": "https://api.github.com/repos/Nollldor/Beats/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Nollldor/Beats/merges", - "archive_url": "https://api.github.com/repos/Nollldor/Beats/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Nollldor/Beats/downloads", - "issues_url": "https://api.github.com/repos/Nollldor/Beats/issues{/number}", - "pulls_url": "https://api.github.com/repos/Nollldor/Beats/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Nollldor/Beats/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Nollldor/Beats/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Nollldor/Beats/labels{/name}", - "releases_url": "https://api.github.com/repos/Nollldor/Beats/releases{/id}", - "deployments_url": "https://api.github.com/repos/Nollldor/Beats/deployments" - }, - "score": 1 - }, - { - "name": "skintools.js", - "path": "material/topicon/src/es/Plugin/skintools.js", - "sha": "c07a94108f35224555e1b0e905097fc22cded080", - "url": "https://api.github.com/repositories/429677614/contents/material/topicon/src/es/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/c07a94108f35224555e1b0e905097fc22cded080", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topicon/src/es/Plugin/skintools.js", - "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", - "private": false, - "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "skintools.js", - "path": "material/mmenu/src/es/Plugin/skintools.js", - "sha": "f99f35052d8bc871f0a018a0a1d9f0be588cafd8", - "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/f99f35052d8bc871f0a018a0a1d9f0be588cafd8", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Plugin/skintools.js", + "name": "widgets.js", + "path": "wp-admin/js/widgets.js", + "sha": "e8fc42507d3821bd56e1ac97299054f7eab61714", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/widgets.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/e8fc42507d3821bd56e1ac97299054f7eab61714", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/widgets.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "Site.js", - "path": "material/mmenu/src/es/Site.js", - "sha": "f218e901ce0968bd4e65da99add11bce1292e44b", - "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Site.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/f218e901ce0968bd4e65da99add11bce1292e44b", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Site.js", + "name": "privacy-tools.js", + "path": "wp-admin/js/privacy-tools.js", + "sha": "e5fceb86d78c6351766a6ffcc9a604786324d052", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/privacy-tools.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/e5fceb86d78c6351766a6ffcc9a604786324d052", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/privacy-tools.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "Sidebar.js", - "path": "material/mmenu/src/es/Section/Sidebar.js", - "sha": "ea92853466ca797e14d184f866488b66e942a085", - "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Section/Sidebar.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/ea92853466ca797e14d184f866488b66e942a085", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Section/Sidebar.js", + "name": "custom-html-widgets.js", + "path": "wp-admin/js/widgets/custom-html-widgets.js", + "sha": "e36d11583f1458bd16bd9756168928f55e947ced", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/widgets/custom-html-widgets.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/e36d11583f1458bd16bd9756168928f55e947ced", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/widgets/custom-html-widgets.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "skintools.js", - "path": "material/iconbar/assets/js/Plugin/skintools.js", - "sha": "e700e525d15a0952165d609db039b98fb8ac218f", - "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/assets/js/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/e700e525d15a0952165d609db039b98fb8ac218f", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/assets/js/Plugin/skintools.js", + "name": "editor.js", + "path": "wp-admin/js/editor.js", + "sha": "d5fe958c193953be0b309b086395030899b2df38", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/editor.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/d5fe958c193953be0b309b086395030899b2df38", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/editor.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "editable.js", - "path": "material/topbar/src/examples/es/forms/editable.js", - "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "url": "https://api.github.com/repositories/429677614/contents/material/topbar/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/src/examples/es/forms/editable.js", + "name": "xfn.js", + "path": "wp-admin/js/xfn.js", + "sha": "cf7fcf8bb7f52dbfd93e1ec45197be3030853ff0", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/xfn.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/cf7fcf8bb7f52dbfd93e1ec45197be3030853ff0", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/xfn.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "editable.js", - "path": "material/topicon/src/examples/es/forms/editable.js", - "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "url": "https://api.github.com/repositories/429677614/contents/material/topicon/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topicon/src/examples/es/forms/editable.js", + "name": "touch-keyboard-navigation.js", + "path": "wp-content/themes/twentynineteen/js/touch-keyboard-navigation.js", + "sha": "c8d1dd02e671e9889b9b8c3e6e4b53d6c7b987a0", + "url": "https://api.github.com/repositories/430646297/contents/wp-content/themes/twentynineteen/js/touch-keyboard-navigation.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/c8d1dd02e671e9889b9b8c3e6e4b53d6c7b987a0", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-content/themes/twentynineteen/js/touch-keyboard-navigation.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "editable.js", - "path": "material/iconbar/src/examples/es/forms/editable.js", - "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/src/examples/es/forms/editable.js", + "name": "accordion.js", + "path": "wp-admin/js/accordion.js", + "sha": "c420e8ccb88efedb9465301a27bff119d4d1e905", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/accordion.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/c420e8ccb88efedb9465301a27bff119d4d1e905", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/accordion.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "editable.js", - "path": "material/mmenu/src/examples/es/forms/editable.js", - "sha": "e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/examples/es/forms/editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/e3019b6eea2df61e52d408f1bd78bc94019f3c72", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/examples/es/forms/editable.js", + "name": "post.js", + "path": "wp-admin/js/post.js", + "sha": "b0fca99135f141409ce1f82b3524cf1e06dbb2b5", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/post.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/b0fca99135f141409ce1f82b3524cf1e06dbb2b5", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/post.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "PageAside.js", - "path": "material/mmenu/src/es/Section/PageAside.js", - "sha": "e29910db8ab81b8ca54e0e3cfe0c69c14a5a63f9", - "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/src/es/Section/PageAside.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/e29910db8ab81b8ca54e0e3cfe0c69c14a5a63f9", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/src/es/Section/PageAside.js", + "name": "application-passwords.js", + "path": "wp-admin/js/application-passwords.js", + "sha": "ae9fe43b0c1a5a38edd5fea3f3441140e9563221", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/application-passwords.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/ae9fe43b0c1a5a38edd5fea3f3441140e9563221", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/application-passwords.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "bootstrap-editable.js", - "path": "material/global/vendor/x-editable/bootstrap-editable.js", - "sha": "dd8138568e29426a6219d36a938124b5c6a4f161", - "url": "https://api.github.com/repositories/429677614/contents/material/global/vendor/x-editable/bootstrap-editable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/dd8138568e29426a6219d36a938124b5c6a4f161", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/global/vendor/x-editable/bootstrap-editable.js", + "name": "media-audio-widget.js", + "path": "wp-admin/js/widgets/media-audio-widget.js", + "sha": "a57925364da70cfca0be9ff2cf18224891add99f", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/widgets/media-audio-widget.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/a57925364da70cfca0be9ff2cf18224891add99f", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/widgets/media-audio-widget.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "tether.js", - "path": "material/global/vendor/tether/tether.js", - "sha": "d546ee12a4337742ef86bcc68da7059b3e87495f", - "url": "https://api.github.com/repositories/429677614/contents/material/global/vendor/tether/tether.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/d546ee12a4337742ef86bcc68da7059b3e87495f", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/global/vendor/tether/tether.js", + "name": "editor-expand.js", + "path": "wp-admin/js/editor-expand.js", + "sha": "a47c548dc9a8f3714c1ecdf7d794d38252df5b25", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/editor-expand.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/a47c548dc9a8f3714c1ecdf7d794d38252df5b25", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/editor-expand.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "menu.js", - "path": "material/iconbar/assets/js/Plugin/menu.js", - "sha": "d1ffd81e11415c5356a5e86fb1a21738c9dc3e6b", - "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/assets/js/Plugin/menu.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/d1ffd81e11415c5356a5e86fb1a21738c9dc3e6b", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/assets/js/Plugin/menu.js", + "name": "svg-painter.js", + "path": "wp-admin/js/svg-painter.js", + "sha": "a3567354469f55130dbc79a08094b4daa6c18bf3", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/svg-painter.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/a3567354469f55130dbc79a08094b4daa6c18bf3", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/svg-painter.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "fb_wall.js", - "path": "material/topbar/assets/examples/js/pages/fb_wall.js", - "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", - "url": "https://api.github.com/repositories/429677614/contents/material/topbar/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/assets/examples/js/pages/fb_wall.js", + "name": "customize-widgets.js", + "path": "wp-admin/js/customize-widgets.js", + "sha": "a33bfe1e78ea50ce4bfa65c1d6636d29263165e4", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/customize-widgets.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/a33bfe1e78ea50ce4bfa65c1d6636d29263165e4", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/customize-widgets.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "fb_wall.js", - "path": "material/topicon/assets/examples/js/pages/fb_wall.js", - "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", - "url": "https://api.github.com/repositories/429677614/contents/material/topicon/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topicon/assets/examples/js/pages/fb_wall.js", + "name": "plugin-install.js", + "path": "wp-admin/js/plugin-install.js", + "sha": "9b43b53e13a437ca6794d7c03de3efa5a9c2bfa0", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/plugin-install.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/9b43b53e13a437ca6794d7c03de3efa5a9c2bfa0", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/plugin-install.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "fb_wall.js", - "path": "material/iconbar/assets/examples/js/pages/fb_wall.js", - "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", - "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/assets/examples/js/pages/fb_wall.js", + "name": "auth-app.js", + "path": "wp-admin/js/auth-app.js", + "sha": "99478d1824a2defedee4f312ae9cb18bc7f75352", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/auth-app.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/99478d1824a2defedee4f312ae9cb18bc7f75352", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/auth-app.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "fb_wall.js", - "path": "material/mmenu/assets/examples/js/pages/fb_wall.js", - "sha": "cfc98992579604fd2d2775273f740aaef993b4f8", - "url": "https://api.github.com/repositories/429677614/contents/material/mmenu/assets/examples/js/pages/fb_wall.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/cfc98992579604fd2d2775273f740aaef993b4f8", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/mmenu/assets/examples/js/pages/fb_wall.js", + "name": "edit-comments.js", + "path": "wp-admin/js/edit-comments.js", + "sha": "96ca1f9f48993d536af3a159fd18fc4712bd5421", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/edit-comments.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/96ca1f9f48993d536af3a159fd18fc4712bd5421", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/edit-comments.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "Taskboard.js", - "path": "material/topbar/src/es/App/Taskboard.js", - "sha": "cece963f68cd8e2d8b60c1be6e7996b1d993be99", - "url": "https://api.github.com/repositories/429677614/contents/material/topbar/src/es/App/Taskboard.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/cece963f68cd8e2d8b60c1be6e7996b1d993be99", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/src/es/App/Taskboard.js", + "name": "customize-nav-menus.js", + "path": "wp-admin/js/customize-nav-menus.js", + "sha": "8930f15ddfcc74778d28aa5dd02b001771d39c6c", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/customize-nav-menus.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/8930f15ddfcc74778d28aa5dd02b001771d39c6c", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/customize-nav-menus.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "Taskboard.js", - "path": "material/iconbar/src/es/App/Taskboard.js", - "sha": "cece963f68cd8e2d8b60c1be6e7996b1d993be99", - "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/src/es/App/Taskboard.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/cece963f68cd8e2d8b60c1be6e7996b1d993be99", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/src/es/App/Taskboard.js", + "name": "theme-plugin-editor.js", + "path": "wp-admin/js/theme-plugin-editor.js", + "sha": "8871b0432a676c62218426e1c2b6882c871714c7", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/theme-plugin-editor.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/8871b0432a676c62218426e1c2b6882c871714c7", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/theme-plugin-editor.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "datatable.js", - "path": "material/topbar/src/examples/es/tables/datatable.js", - "sha": "c6905b28e3819cd4a07c737c406cefb0c4329bc3", - "url": "https://api.github.com/repositories/429677614/contents/material/topbar/src/examples/es/tables/datatable.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/c6905b28e3819cd4a07c737c406cefb0c4329bc3", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/topbar/src/examples/es/tables/datatable.js", + "name": "inline-edit-tax.js", + "path": "wp-admin/js/inline-edit-tax.js", + "sha": "86e3498cd1eacedf65c6b908856ffdfe88f9a207", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/inline-edit-tax.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/86e3498cd1eacedf65c6b908856ffdfe88f9a207", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/inline-edit-tax.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 }, { - "name": "skintools.js", - "path": "material/iconbar/src/js/Plugin/skintools.js", - "sha": "be0a40c98109c4692c31c9a36ab262ac33f392d2", - "url": "https://api.github.com/repositories/429677614/contents/material/iconbar/src/js/Plugin/skintools.js?ref=afd32b35029a98b69438654d98f05cfec6a0aefd", - "git_url": "https://api.github.com/repositories/429677614/git/blobs/be0a40c98109c4692c31c9a36ab262ac33f392d2", - "html_url": "https://github.com/cream-paasta/newer_news_web/blob/afd32b35029a98b69438654d98f05cfec6a0aefd/material/iconbar/src/js/Plugin/skintools.js", + "name": "revisions.js", + "path": "wp-admin/js/revisions.js", + "sha": "83c2641485208a612626f5252390d8fd15bac637", + "url": "https://api.github.com/repositories/430646297/contents/wp-admin/js/revisions.js?ref=0ed246dc83c0c784c1901e1af8ad79047844166c", + "git_url": "https://api.github.com/repositories/430646297/git/blobs/83c2641485208a612626f5252390d8fd15bac637", + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io/blob/0ed246dc83c0c784c1901e1af8ad79047844166c/wp-admin/js/revisions.js", "repository": { - "id": 429677614, - "node_id": "R_kgDOGZxcLg", - "name": "newer_news_web", - "full_name": "cream-paasta/newer_news_web", + "id": 430646297, + "node_id": "R_kgDOGaskGQ", + "name": "mckaranistudios.github.io", + "full_name": "mckaranistudios/mckaranistudios.github.io", "private": false, "owner": { - "login": "cream-paasta", - "id": 93564427, - "node_id": "O_kgDOBZOuCw", - "avatar_url": "https://avatars.githubusercontent.com/u/93564427?v=4", + "login": "mckaranistudios", + "id": 94008537, + "node_id": "U_kgDOBZp02Q", + "avatar_url": "https://avatars.githubusercontent.com/u/94008537?v=4", "gravatar_id": "", - "url": "https://api.github.com/users/cream-paasta", - "html_url": "https://github.com/cream-paasta", - "followers_url": "https://api.github.com/users/cream-paasta/followers", - "following_url": "https://api.github.com/users/cream-paasta/following{/other_user}", - "gists_url": "https://api.github.com/users/cream-paasta/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cream-paasta/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cream-paasta/subscriptions", - "organizations_url": "https://api.github.com/users/cream-paasta/orgs", - "repos_url": "https://api.github.com/users/cream-paasta/repos", - "events_url": "https://api.github.com/users/cream-paasta/events{/privacy}", - "received_events_url": "https://api.github.com/users/cream-paasta/received_events", - "type": "Organization", + "url": "https://api.github.com/users/mckaranistudios", + "html_url": "https://github.com/mckaranistudios", + "followers_url": "https://api.github.com/users/mckaranistudios/followers", + "following_url": "https://api.github.com/users/mckaranistudios/following{/other_user}", + "gists_url": "https://api.github.com/users/mckaranistudios/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mckaranistudios/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mckaranistudios/subscriptions", + "organizations_url": "https://api.github.com/users/mckaranistudios/orgs", + "repos_url": "https://api.github.com/users/mckaranistudios/repos", + "events_url": "https://api.github.com/users/mckaranistudios/events{/privacy}", + "received_events_url": "https://api.github.com/users/mckaranistudios/received_events", + "type": "User", "site_admin": false }, - "html_url": "https://github.com/cream-paasta/newer_news_web", - "description": null, + "html_url": "https://github.com/mckaranistudios/mckaranistudios.github.io", + "description": "Whatever it takes!", "fork": false, - "url": "https://api.github.com/repos/cream-paasta/newer_news_web", - "forks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/forks", - "keys_url": "https://api.github.com/repos/cream-paasta/newer_news_web/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cream-paasta/newer_news_web/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cream-paasta/newer_news_web/teams", - "hooks_url": "https://api.github.com/repos/cream-paasta/newer_news_web/hooks", - "issue_events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/events{/number}", - "events_url": "https://api.github.com/repos/cream-paasta/newer_news_web/events", - "assignees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/assignees{/user}", - "branches_url": "https://api.github.com/repos/cream-paasta/newer_news_web/branches{/branch}", - "tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/tags", - "blobs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cream-paasta/newer_news_web/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cream-paasta/newer_news_web/languages", - "stargazers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/stargazers", - "contributors_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contributors", - "subscribers_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscribers", - "subscription_url": "https://api.github.com/repos/cream-paasta/newer_news_web/subscription", - "commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cream-paasta/newer_news_web/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cream-paasta/newer_news_web/contents/{+path}", - "compare_url": "https://api.github.com/repos/cream-paasta/newer_news_web/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cream-paasta/newer_news_web/merges", - "archive_url": "https://api.github.com/repos/cream-paasta/newer_news_web/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cream-paasta/newer_news_web/downloads", - "issues_url": "https://api.github.com/repos/cream-paasta/newer_news_web/issues{/number}", - "pulls_url": "https://api.github.com/repos/cream-paasta/newer_news_web/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cream-paasta/newer_news_web/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cream-paasta/newer_news_web/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cream-paasta/newer_news_web/labels{/name}", - "releases_url": "https://api.github.com/repos/cream-paasta/newer_news_web/releases{/id}", - "deployments_url": "https://api.github.com/repos/cream-paasta/newer_news_web/deployments" + "url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io", + "forks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/forks", + "keys_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/teams", + "hooks_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/events", + "assignees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/tags", + "blobs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/languages", + "stargazers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/subscription", + "commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/merges", + "archive_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/downloads", + "issues_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/mckaranistudios/mckaranistudios.github.io/deployments" }, "score": 1 } diff --git a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/user-1.json b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/user-1.json index b7eb3749f3..8680911c7c 100644 --- a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/user-1.json +++ b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/__files/user-1.json @@ -34,7 +34,7 @@ "private_gists": 7, "total_private_repos": 25, "owned_private_repos": 25, - "disk_usage": 505415, + "disk_usage": 505417, "collaborators": 1, "two_factor_authentication": true, "plan": { diff --git a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-2.json b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-2.json index 4d552c777d..f4fdec9398 100644 --- a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-2.json +++ b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-2.json @@ -1,5 +1,5 @@ { - "id": "b264f2c8-9780-4d39-8f59-39adb461e042", + "id": "e66f46d2-2827-412a-a0c6-89f8370c34ac", "name": "search_code", "request": { "url": "/search/code?sort=indexed&order=desc&q=addClass+language%3Ajs", @@ -15,7 +15,7 @@ "bodyFileName": "search_code-2.json", "headers": { "Server": "GitHub.com", - "Date": "Sun, 21 Nov 2021 13:04:45 GMT", + "Date": "Mon, 22 Nov 2021 10:03:26 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "no-cache", "Vary": [ @@ -28,7 +28,7 @@ "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "30", "X-RateLimit-Remaining": "29", - "X-RateLimit-Reset": "1637499943", + "X-RateLimit-Reset": "1637575463", "X-RateLimit-Used": "1", "X-RateLimit-Resource": "search", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -37,11 +37,11 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "D5C0:1F74:CD3CA9:DC0F7D:619A43EA", + "X-GitHub-Request-Id": "EB6C:1F74:1390213:14C0A7E:619B6AEB", "Link": "; rel=\"next\", ; rel=\"last\"" } }, - "uuid": "b264f2c8-9780-4d39-8f59-39adb461e042", + "uuid": "e66f46d2-2827-412a-a0c6-89f8370c34ac", "persistent": true, "insertionIndex": 2 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-3.json b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-3.json index 2688fb2c9a..a506f77276 100644 --- a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-3.json +++ b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/search_code-3.json @@ -1,5 +1,5 @@ { - "id": "e8cbb690-9c42-4a75-83c8-65a3dc22c263", + "id": "67436d53-afd1-4df2-8f10-734b45b4abed", "name": "search_code", "request": { "url": "/search/code?sort=indexed&order=desc&q=addClass+language%3Ajs+fork%3Atrue", @@ -15,7 +15,7 @@ "bodyFileName": "search_code-3.json", "headers": { "Server": "GitHub.com", - "Date": "Sun, 21 Nov 2021 13:04:48 GMT", + "Date": "Mon, 22 Nov 2021 10:03:29 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "no-cache", "Vary": [ @@ -28,7 +28,7 @@ "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "30", "X-RateLimit-Remaining": "28", - "X-RateLimit-Reset": "1637499943", + "X-RateLimit-Reset": "1637575463", "X-RateLimit-Used": "2", "X-RateLimit-Resource": "search", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", @@ -37,11 +37,11 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "D5C1:1F74:CD3D28:DC100B:619A43EE", + "X-GitHub-Request-Id": "EB6D:7D60:761E32:7C4B93:619B6AEE", "Link": "; rel=\"next\", ; rel=\"last\"" } }, - "uuid": "e8cbb690-9c42-4a75-83c8-65a3dc22c263", + "uuid": "67436d53-afd1-4df2-8f10-734b45b4abed", "persistent": true, "insertionIndex": 3 } \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/user-1.json b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/user-1.json index 34d0febba0..c5ce68263a 100644 --- a/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/user-1.json +++ b/src/test/resources/org/kohsuke/github/GitHubTest/wiremock/searchContentWithForks/mappings/user-1.json @@ -1,5 +1,5 @@ { - "id": "117d529c-d4aa-46ea-8b5b-c07ea58ee7be", + "id": "8794a2f3-d6de-4578-8f68-33dbec02760d", "name": "user", "request": { "url": "/user", @@ -15,23 +15,23 @@ "bodyFileName": "user-1.json", "headers": { "Server": "GitHub.com", - "Date": "Sun, 21 Nov 2021 13:04:41 GMT", + "Date": "Mon, 22 Nov 2021 10:03:22 GMT", "Content-Type": "application/json; charset=utf-8", "Cache-Control": "private, max-age=60, s-maxage=60", "Vary": [ "Accept, Authorization, Cookie, X-GitHub-OTP", "Accept-Encoding, Accept, X-Requested-With" ], - "ETag": "W/\"274b7a0391a4d8ec088bc09c2ea4493111a73618dc4f9b76977913c0187d8e4b\"", + "ETag": "W/\"423eec8cb3dd36cf77abae8e76b77dd64a32ff8cecee5af3e3e25ccf8fea4459\"", "Last-Modified": "Thu, 18 Nov 2021 15:29:00 GMT", "X-OAuth-Scopes": "admin:org, delete_repo, repo, user", "X-Accepted-OAuth-Scopes": "", "github-authentication-token-expiration": "2022-01-30 03:21:12 UTC", "X-GitHub-Media-Type": "github.v3; format=json", "X-RateLimit-Limit": "5000", - "X-RateLimit-Remaining": "4793", - "X-RateLimit-Reset": "1637502525", - "X-RateLimit-Used": "207", + "X-RateLimit-Remaining": "4973", + "X-RateLimit-Reset": "1637576004", + "X-RateLimit-Used": "27", "X-RateLimit-Resource": "core", "Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload", "X-Frame-Options": "deny", @@ -39,10 +39,10 @@ "X-XSS-Protection": "0", "Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin", "Content-Security-Policy": "default-src 'none'", - "X-GitHub-Request-Id": "D5BE:1F74:CD3C84:DC0F57:619A43E9" + "X-GitHub-Request-Id": "EB6A:7D60:761CE4:7C4A2D:619B6AEA" } }, - "uuid": "117d529c-d4aa-46ea-8b5b-c07ea58ee7be", + "uuid": "8794a2f3-d6de-4578-8f68-33dbec02760d", "persistent": true, "insertionIndex": 1 } \ No newline at end of file From 0624eea2b44611c26d38eeb11e02949c22429115 Mon Sep 17 00:00:00 2001 From: Sahan Serasinghe Date: Mon, 22 Nov 2021 20:41:31 +1030 Subject: [PATCH 6/7] Run spotless check --- .../java/org/kohsuke/github/GHRepositorySearchBuilder.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java b/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java index 5506f68c59..8ff0308416 100644 --- a/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java +++ b/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java @@ -251,8 +251,7 @@ public enum Sort { } /** - * The enum for Fork search mode - * Note: Kept for backward compatibility. Use GHFork instead. + * The enum for Fork search mode. Note: Kept for backward compatibility. Use GHFork instead. */ @Deprecated public enum Fork { From 4b551170e406408e4920b77e281fd66f1a19b89d Mon Sep 17 00:00:00 2001 From: Sahan Serasinghe Date: Sun, 5 Dec 2021 14:18:24 +1030 Subject: [PATCH 7/7] Add CS427 comments as per assignment requirements --- src/main/java/org/kohsuke/github/GHContentSearchBuilder.java | 2 ++ src/main/java/org/kohsuke/github/GHFork.java | 1 + .../java/org/kohsuke/github/GHRepositorySearchBuilder.java | 3 +++ src/test/java/org/kohsuke/github/GHRepositoryTest.java | 2 ++ src/test/java/org/kohsuke/github/GitHubTest.java | 1 + 5 files changed, 9 insertions(+) diff --git a/src/main/java/org/kohsuke/github/GHContentSearchBuilder.java b/src/main/java/org/kohsuke/github/GHContentSearchBuilder.java index a5f10b191f..23c7106326 100644 --- a/src/main/java/org/kohsuke/github/GHContentSearchBuilder.java +++ b/src/main/java/org/kohsuke/github/GHContentSearchBuilder.java @@ -48,6 +48,7 @@ public GHContentSearchBuilder language(String v) { * the v * @return the gh content search builder */ + // CS427 Issue Link: https://github.com/hub4j/github-api/issues/1154 @Deprecated public GHContentSearchBuilder fork(String v) { return q("fork:" + v); @@ -65,6 +66,7 @@ public GHContentSearchBuilder fork(String v) { * "https://docs.github.com/en/github/searching-for-information-on-github/searching-on-github/searching-in-forks">Searching * in forks */ + // CS427 Issue Link: https://github.com/hub4j/github-api/issues/1154 public GHContentSearchBuilder fork(GHFork fork) { if (GHFork.PARENT_ONLY.equals(fork)) { this.terms.removeIf(term -> term.contains("fork:")); diff --git a/src/main/java/org/kohsuke/github/GHFork.java b/src/main/java/org/kohsuke/github/GHFork.java index 190006392c..cf3ec7a9cc 100644 --- a/src/main/java/org/kohsuke/github/GHFork.java +++ b/src/main/java/org/kohsuke/github/GHFork.java @@ -3,6 +3,7 @@ /** * The enum for Fork search mode */ +// CS427 Issue Link: https://github.com/hub4j/github-api/issues/1154 public enum GHFork { /** diff --git a/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java b/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java index 8ff0308416..54110bbaf6 100644 --- a/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java +++ b/src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java @@ -76,6 +76,7 @@ public GHRepositorySearchBuilder forks(String v) { * in forks * */ + // CS427 Issue Link: https://github.com/hub4j/github-api/issues/1154 @Deprecated public GHRepositorySearchBuilder fork(Fork fork) { if (Fork.PARENT_ONLY.equals(fork)) { @@ -110,6 +111,7 @@ public GHRepositorySearchBuilder fork(Fork fork) { * in forks * */ + // CS427 Issue Link: https://github.com/hub4j/github-api/issues/1154 public GHRepositorySearchBuilder fork(GHFork fork) { if (GHFork.PARENT_ONLY.equals(fork)) { this.terms.removeIf(term -> term.contains("fork:")); @@ -253,6 +255,7 @@ public enum Sort { /** * The enum for Fork search mode. Note: Kept for backward compatibility. Use GHFork instead. */ + // CS427 Issue Link: https://github.com/hub4j/github-api/issues/1154 @Deprecated public enum Fork { diff --git a/src/test/java/org/kohsuke/github/GHRepositoryTest.java b/src/test/java/org/kohsuke/github/GHRepositoryTest.java index c9cf2d2460..56645d62cb 100644 --- a/src/test/java/org/kohsuke/github/GHRepositoryTest.java +++ b/src/test/java/org/kohsuke/github/GHRepositoryTest.java @@ -419,6 +419,7 @@ public void listCommitCommentsNoComments() throws IOException { assertThat("Commit has no comments", commitComments.isEmpty()); } + // CS427 Issue Link: https://github.com/hub4j/github-api/issues/1154 @Test public void searchAllPublicAndForkedRepos() throws IOException { PagedSearchIterable list = gitHub.searchRepositories() @@ -464,6 +465,7 @@ public void ghRepositorySearchBuilderIgnoresUnknownVisibility() { assertThat(ghRepositorySearchBuilder.terms.stream().filter(item -> item.contains("is:")).count(), is(1L)); } + // CS427 Issue Link: https://github.com/hub4j/github-api/issues/1154 @Test public void ghRepositorySearchBuilderForkDefaultResetForksSearchTerms() { GHRepositorySearchBuilder ghRepositorySearchBuilder = new GHRepositorySearchBuilder(gitHub); diff --git a/src/test/java/org/kohsuke/github/GitHubTest.java b/src/test/java/org/kohsuke/github/GitHubTest.java index bbb7df1689..d8e66f8977 100644 --- a/src/test/java/org/kohsuke/github/GitHubTest.java +++ b/src/test/java/org/kohsuke/github/GitHubTest.java @@ -154,6 +154,7 @@ public void searchContent() throws Exception { } + // CS427 Issue Link: https://github.com/hub4j/github-api/issues/1154 @Test public void searchContentWithForks() { final PagedSearchIterable results = gitHub.searchContent()