diff --git a/part6/Main.elm b/part6/Main.elm index efbc84e..b9035c3 100644 --- a/part6/Main.elm +++ b/part6/Main.elm @@ -6,6 +6,7 @@ import Html.Attributes exposing (class, target, href, property, defaultValue) import Html.Events exposing (..) import Json.Decode exposing (..) import Json.Decode.Pipeline exposing (..) +import SampleResponse main : Program Never @@ -17,58 +18,13 @@ main = } - --- see http://package.elm-lang.org/packages/elm-lang/core/latest/Json-Decode#decodeString - - -sampleJson : String -sampleJson = - """ - { - "total_count": 40, - "incomplete_results": false, - "items": [ - { - "id": 3081286, - "name": "Tetris", - "full_name": "dtrupenn/Tetris", - "owner": { - "login": "dtrupenn", - "id": 872147, - "avatar_url": "https://secure.gravatar.com/avatar/e7956084e75f239de85d3a31bc172ace?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png", - "gravatar_id": "", - "url": "https://api.github.com/users/dtrupenn", - "received_events_url": "https://api.github.com/users/dtrupenn/received_events", - "type": "User" - }, - "private": false, - "html_url": "https://github.com/dtrupenn/Tetris", - "description": "A C implementation of Tetris using Pennsim through LC4", - "fork": false, - "url": "https://api.github.com/repos/dtrupenn/Tetris", - "created_at": "2012-01-01T00:31:50Z", - "updated_at": "2013-01-05T17:58:47Z", - "pushed_at": "2012-01-01T00:37:02Z", - "homepage": "", - "size": 524, - "stargazers_count": 1, - "watchers_count": 1, - "language": "Assembly", - "forks_count": 0, - "open_issues_count": 0, - "master_branch": "master", - "default_branch": "master", - "score": 10.309712 - } - ] - } - """ - - searchResultDecoder : Decoder SearchResult searchResultDecoder = -- See https://developer.github.com/v3/search/#example -- and http://package.elm-lang.org/packages/NoRedInk/elm-decode-pipeline/latest + -- + -- Look in SampleResponse.elm to see the exact JSON we'll be decoding! + -- -- TODO replace these calls to `hardcoded` with calls to `required` decode SearchResult |> hardcoded 0 @@ -92,7 +48,7 @@ type alias SearchResult = initialModel : Model initialModel = { query = "tutorial" - , results = decodeResults sampleJson + , results = decodeResults SampleResponse.json } diff --git a/part6/SampleResponse.elm b/part6/SampleResponse.elm new file mode 100644 index 0000000..79e8883 --- /dev/null +++ b/part6/SampleResponse.elm @@ -0,0 +1,2683 @@ +module SampleResponse exposing (json) + + +json : String +json = + """ + { + "total_count": 92, + "incomplete_results": false, + "items": [ + { + "id": 49248044, + "name": "elm-tutorial", + "full_name": "sporto/elm-tutorial", + "owner": { + "login": "sporto", + "id": 1005498, + "avatar_url": "https://avatars.githubusercontent.com/u/1005498?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/sporto", + "html_url": "https://github.com/sporto", + "followers_url": "https://api.github.com/users/sporto/followers", + "following_url": "https://api.github.com/users/sporto/following{/other_user}", + "gists_url": "https://api.github.com/users/sporto/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sporto/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sporto/subscriptions", + "organizations_url": "https://api.github.com/users/sporto/orgs", + "repos_url": "https://api.github.com/users/sporto/repos", + "events_url": "https://api.github.com/users/sporto/events{/privacy}", + "received_events_url": "https://api.github.com/users/sporto/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/sporto/elm-tutorial", + "description": "A guide to building web applications using Elm", + "fork": false, + "url": "https://api.github.com/repos/sporto/elm-tutorial", + "forks_url": "https://api.github.com/repos/sporto/elm-tutorial/forks", + "keys_url": "https://api.github.com/repos/sporto/elm-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/sporto/elm-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/sporto/elm-tutorial/teams", + "hooks_url": "https://api.github.com/repos/sporto/elm-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/sporto/elm-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/sporto/elm-tutorial/events", + "assignees_url": "https://api.github.com/repos/sporto/elm-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/sporto/elm-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/sporto/elm-tutorial/tags", + "blobs_url": "https://api.github.com/repos/sporto/elm-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/sporto/elm-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/sporto/elm-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/sporto/elm-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/sporto/elm-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/sporto/elm-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/sporto/elm-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/sporto/elm-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/sporto/elm-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/sporto/elm-tutorial/subscription", + "commits_url": "https://api.github.com/repos/sporto/elm-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/sporto/elm-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/sporto/elm-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/sporto/elm-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/sporto/elm-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/sporto/elm-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/sporto/elm-tutorial/merges", + "archive_url": "https://api.github.com/repos/sporto/elm-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/sporto/elm-tutorial/downloads", + "issues_url": "https://api.github.com/repos/sporto/elm-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/sporto/elm-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/sporto/elm-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/sporto/elm-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/sporto/elm-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/sporto/elm-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/sporto/elm-tutorial/deployments", + "created_at": "2016-01-08T03:52:24Z", + "updated_at": "2016-09-05T14:39:57Z", + "pushed_at": "2016-09-02T19:47:51Z", + "git_url": "git://github.com/sporto/elm-tutorial.git", + "ssh_url": "git@github.com:sporto/elm-tutorial.git", + "clone_url": "https://github.com/sporto/elm-tutorial.git", + "svn_url": "https://github.com/sporto/elm-tutorial", + "homepage": null, + "size": 2551, + "stargazers_count": 182, + "watchers_count": 182, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 51, + "mirror_url": null, + "open_issues_count": 2, + "forks": 51, + "open_issues": 2, + "watchers": 182, + "default_branch": "master", + "score": 23.161812 + }, + { + "id": 49986492, + "name": "elm-tutorial-app", + "full_name": "sporto/elm-tutorial-app", + "owner": { + "login": "sporto", + "id": 1005498, + "avatar_url": "https://avatars.githubusercontent.com/u/1005498?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/sporto", + "html_url": "https://github.com/sporto", + "followers_url": "https://api.github.com/users/sporto/followers", + "following_url": "https://api.github.com/users/sporto/following{/other_user}", + "gists_url": "https://api.github.com/users/sporto/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sporto/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sporto/subscriptions", + "organizations_url": "https://api.github.com/users/sporto/orgs", + "repos_url": "https://api.github.com/users/sporto/repos", + "events_url": "https://api.github.com/users/sporto/events{/privacy}", + "received_events_url": "https://api.github.com/users/sporto/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/sporto/elm-tutorial-app", + "description": "An example Elm single page application", + "fork": false, + "url": "https://api.github.com/repos/sporto/elm-tutorial-app", + "forks_url": "https://api.github.com/repos/sporto/elm-tutorial-app/forks", + "keys_url": "https://api.github.com/repos/sporto/elm-tutorial-app/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/sporto/elm-tutorial-app/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/sporto/elm-tutorial-app/teams", + "hooks_url": "https://api.github.com/repos/sporto/elm-tutorial-app/hooks", + "issue_events_url": "https://api.github.com/repos/sporto/elm-tutorial-app/issues/events{/number}", + "events_url": "https://api.github.com/repos/sporto/elm-tutorial-app/events", + "assignees_url": "https://api.github.com/repos/sporto/elm-tutorial-app/assignees{/user}", + "branches_url": "https://api.github.com/repos/sporto/elm-tutorial-app/branches{/branch}", + "tags_url": "https://api.github.com/repos/sporto/elm-tutorial-app/tags", + "blobs_url": "https://api.github.com/repos/sporto/elm-tutorial-app/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/sporto/elm-tutorial-app/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/sporto/elm-tutorial-app/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/sporto/elm-tutorial-app/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/sporto/elm-tutorial-app/statuses/{sha}", + "languages_url": "https://api.github.com/repos/sporto/elm-tutorial-app/languages", + "stargazers_url": "https://api.github.com/repos/sporto/elm-tutorial-app/stargazers", + "contributors_url": "https://api.github.com/repos/sporto/elm-tutorial-app/contributors", + "subscribers_url": "https://api.github.com/repos/sporto/elm-tutorial-app/subscribers", + "subscription_url": "https://api.github.com/repos/sporto/elm-tutorial-app/subscription", + "commits_url": "https://api.github.com/repos/sporto/elm-tutorial-app/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/sporto/elm-tutorial-app/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/sporto/elm-tutorial-app/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/sporto/elm-tutorial-app/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/sporto/elm-tutorial-app/contents/{+path}", + "compare_url": "https://api.github.com/repos/sporto/elm-tutorial-app/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/sporto/elm-tutorial-app/merges", + "archive_url": "https://api.github.com/repos/sporto/elm-tutorial-app/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/sporto/elm-tutorial-app/downloads", + "issues_url": "https://api.github.com/repos/sporto/elm-tutorial-app/issues{/number}", + "pulls_url": "https://api.github.com/repos/sporto/elm-tutorial-app/pulls{/number}", + "milestones_url": "https://api.github.com/repos/sporto/elm-tutorial-app/milestones{/number}", + "notifications_url": "https://api.github.com/repos/sporto/elm-tutorial-app/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/sporto/elm-tutorial-app/labels{/name}", + "releases_url": "https://api.github.com/repos/sporto/elm-tutorial-app/releases{/id}", + "deployments_url": "https://api.github.com/repos/sporto/elm-tutorial-app/deployments", + "created_at": "2016-01-19T22:05:59Z", + "updated_at": "2016-09-07T02:45:35Z", + "pushed_at": "2016-08-17T08:33:52Z", + "git_url": "git://github.com/sporto/elm-tutorial-app.git", + "ssh_url": "git@github.com:sporto/elm-tutorial-app.git", + "clone_url": "https://github.com/sporto/elm-tutorial-app.git", + "svn_url": "https://github.com/sporto/elm-tutorial-app", + "homepage": "", + "size": 378, + "stargazers_count": 130, + "watchers_count": 130, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 26, + "mirror_url": null, + "open_issues_count": 0, + "forks": 26, + "open_issues": 0, + "watchers": 130, + "default_branch": "master", + "score": 16.213268 + }, + { + "id": 38345605, + "name": "elm-checkerboardgrid-tutorial", + "full_name": "TheSeamau5/elm-checkerboardgrid-tutorial", + "owner": { + "login": "TheSeamau5", + "id": 3227869, + "avatar_url": "https://avatars.githubusercontent.com/u/3227869?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/TheSeamau5", + "html_url": "https://github.com/TheSeamau5", + "followers_url": "https://api.github.com/users/TheSeamau5/followers", + "following_url": "https://api.github.com/users/TheSeamau5/following{/other_user}", + "gists_url": "https://api.github.com/users/TheSeamau5/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TheSeamau5/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TheSeamau5/subscriptions", + "organizations_url": "https://api.github.com/users/TheSeamau5/orgs", + "repos_url": "https://api.github.com/users/TheSeamau5/repos", + "events_url": "https://api.github.com/users/TheSeamau5/events{/privacy}", + "received_events_url": "https://api.github.com/users/TheSeamau5/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/TheSeamau5/elm-checkerboardgrid-tutorial", + "description": "Tutorial on Container Components in Elm", + "fork": false, + "url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial", + "forks_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/forks", + "keys_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/teams", + "hooks_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/events", + "assignees_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/tags", + "blobs_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/subscription", + "commits_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/merges", + "archive_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/downloads", + "issues_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/TheSeamau5/elm-checkerboardgrid-tutorial/deployments", + "created_at": "2015-07-01T02:48:56Z", + "updated_at": "2016-06-26T15:21:07Z", + "pushed_at": "2015-09-06T17:19:18Z", + "git_url": "git://github.com/TheSeamau5/elm-checkerboardgrid-tutorial.git", + "ssh_url": "git@github.com:TheSeamau5/elm-checkerboardgrid-tutorial.git", + "clone_url": "https://github.com/TheSeamau5/elm-checkerboardgrid-tutorial.git", + "svn_url": "https://github.com/TheSeamau5/elm-checkerboardgrid-tutorial", + "homepage": null, + "size": 192, + "stargazers_count": 83, + "watchers_count": 83, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 6, + "mirror_url": null, + "open_issues_count": 4, + "forks": 6, + "open_issues": 4, + "watchers": 83, + "default_branch": "master", + "score": 11.570574 + }, + { + "id": 23720776, + "name": "elm-by-example", + "full_name": "grzegorzbalcerek/elm-by-example", + "owner": { + "login": "grzegorzbalcerek", + "id": 3006241, + "avatar_url": "https://avatars.githubusercontent.com/u/3006241?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/grzegorzbalcerek", + "html_url": "https://github.com/grzegorzbalcerek", + "followers_url": "https://api.github.com/users/grzegorzbalcerek/followers", + "following_url": "https://api.github.com/users/grzegorzbalcerek/following{/other_user}", + "gists_url": "https://api.github.com/users/grzegorzbalcerek/gists{/gist_id}", + "starred_url": "https://api.github.com/users/grzegorzbalcerek/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/grzegorzbalcerek/subscriptions", + "organizations_url": "https://api.github.com/users/grzegorzbalcerek/orgs", + "repos_url": "https://api.github.com/users/grzegorzbalcerek/repos", + "events_url": "https://api.github.com/users/grzegorzbalcerek/events{/privacy}", + "received_events_url": "https://api.github.com/users/grzegorzbalcerek/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/grzegorzbalcerek/elm-by-example", + "description": "A tutorial for the Elm programming language", + "fork": false, + "url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example", + "forks_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/forks", + "keys_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/teams", + "hooks_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/hooks", + "issue_events_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/issues/events{/number}", + "events_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/events", + "assignees_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/assignees{/user}", + "branches_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/branches{/branch}", + "tags_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/tags", + "blobs_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/statuses/{sha}", + "languages_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/languages", + "stargazers_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/stargazers", + "contributors_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/contributors", + "subscribers_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/subscribers", + "subscription_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/subscription", + "commits_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/contents/{+path}", + "compare_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/merges", + "archive_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/downloads", + "issues_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/issues{/number}", + "pulls_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/pulls{/number}", + "milestones_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/milestones{/number}", + "notifications_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/labels{/name}", + "releases_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/releases{/id}", + "deployments_url": "https://api.github.com/repos/grzegorzbalcerek/elm-by-example/deployments", + "created_at": "2014-09-05T22:53:08Z", + "updated_at": "2016-07-24T23:33:46Z", + "pushed_at": "2016-01-03T10:39:14Z", + "git_url": "git://github.com/grzegorzbalcerek/elm-by-example.git", + "ssh_url": "git@github.com:grzegorzbalcerek/elm-by-example.git", + "clone_url": "https://github.com/grzegorzbalcerek/elm-by-example.git", + "svn_url": "https://github.com/grzegorzbalcerek/elm-by-example", + "homepage": null, + "size": 370, + "stargazers_count": 46, + "watchers_count": 46, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 16, + "mirror_url": null, + "open_issues_count": 5, + "forks": 16, + "open_issues": 5, + "watchers": 46, + "default_branch": "master", + "score": 7.5505295 + }, + { + "id": 49835982, + "name": "elm-tutorial-assets", + "full_name": "sporto/elm-tutorial-assets", + "owner": { + "login": "sporto", + "id": 1005498, + "avatar_url": "https://avatars.githubusercontent.com/u/1005498?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/sporto", + "html_url": "https://github.com/sporto", + "followers_url": "https://api.github.com/users/sporto/followers", + "following_url": "https://api.github.com/users/sporto/following{/other_user}", + "gists_url": "https://api.github.com/users/sporto/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sporto/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sporto/subscriptions", + "organizations_url": "https://api.github.com/users/sporto/orgs", + "repos_url": "https://api.github.com/users/sporto/repos", + "events_url": "https://api.github.com/users/sporto/events{/privacy}", + "received_events_url": "https://api.github.com/users/sporto/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/sporto/elm-tutorial-assets", + "description": "Code for elm-tutorial.org", + "fork": false, + "url": "https://api.github.com/repos/sporto/elm-tutorial-assets", + "forks_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/forks", + "keys_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/teams", + "hooks_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/hooks", + "issue_events_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/issues/events{/number}", + "events_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/events", + "assignees_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/assignees{/user}", + "branches_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/branches{/branch}", + "tags_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/tags", + "blobs_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/statuses/{sha}", + "languages_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/languages", + "stargazers_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/stargazers", + "contributors_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/contributors", + "subscribers_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/subscribers", + "subscription_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/subscription", + "commits_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/contents/{+path}", + "compare_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/merges", + "archive_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/downloads", + "issues_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/issues{/number}", + "pulls_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/pulls{/number}", + "milestones_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/milestones{/number}", + "notifications_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/labels{/name}", + "releases_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/releases{/id}", + "deployments_url": "https://api.github.com/repos/sporto/elm-tutorial-assets/deployments", + "created_at": "2016-01-17T21:17:21Z", + "updated_at": "2016-05-05T07:35:41Z", + "pushed_at": "2016-05-19T22:54:54Z", + "git_url": "git://github.com/sporto/elm-tutorial-assets.git", + "ssh_url": "git@github.com:sporto/elm-tutorial-assets.git", + "clone_url": "https://github.com/sporto/elm-tutorial-assets.git", + "svn_url": "https://github.com/sporto/elm-tutorial-assets", + "homepage": "", + "size": 3304, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "open_issues_count": 0, + "forks": 2, + "open_issues": 0, + "watchers": 12, + "default_branch": "master", + "score": 8.099401 + }, + { + "id": 46041450, + "name": "Elm-Tutorium", + "full_name": "jvoigtlaender/Elm-Tutorium", + "owner": { + "login": "jvoigtlaender", + "id": 5853832, + "avatar_url": "https://avatars.githubusercontent.com/u/5853832?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/jvoigtlaender", + "html_url": "https://github.com/jvoigtlaender", + "followers_url": "https://api.github.com/users/jvoigtlaender/followers", + "following_url": "https://api.github.com/users/jvoigtlaender/following{/other_user}", + "gists_url": "https://api.github.com/users/jvoigtlaender/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jvoigtlaender/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jvoigtlaender/subscriptions", + "organizations_url": "https://api.github.com/users/jvoigtlaender/orgs", + "repos_url": "https://api.github.com/users/jvoigtlaender/repos", + "events_url": "https://api.github.com/users/jvoigtlaender/events{/privacy}", + "received_events_url": "https://api.github.com/users/jvoigtlaender/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jvoigtlaender/Elm-Tutorium", + "description": "Elm tutorial held at http://nfa.imn.htwk-leipzig.de/HAL2015/ and in university course http://www.janis-voigtlaender.eu/teaching/ffp15/", + "fork": false, + "url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium", + "forks_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/forks", + "keys_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/teams", + "hooks_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/hooks", + "issue_events_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/issues/events{/number}", + "events_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/events", + "assignees_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/assignees{/user}", + "branches_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/branches{/branch}", + "tags_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/tags", + "blobs_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/languages", + "stargazers_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/stargazers", + "contributors_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/contributors", + "subscribers_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/subscribers", + "subscription_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/subscription", + "commits_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/contents/{+path}", + "compare_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/merges", + "archive_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/downloads", + "issues_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/issues{/number}", + "pulls_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/labels{/name}", + "releases_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/releases{/id}", + "deployments_url": "https://api.github.com/repos/jvoigtlaender/Elm-Tutorium/deployments", + "created_at": "2015-11-12T09:04:53Z", + "updated_at": "2016-08-25T11:08:59Z", + "pushed_at": "2016-05-11T07:28:53Z", + "git_url": "git://github.com/jvoigtlaender/Elm-Tutorium.git", + "ssh_url": "git@github.com:jvoigtlaender/Elm-Tutorium.git", + "clone_url": "https://github.com/jvoigtlaender/Elm-Tutorium.git", + "svn_url": "https://github.com/jvoigtlaender/Elm-Tutorium", + "homepage": "", + "size": 246, + "stargazers_count": 10, + "watchers_count": 10, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "forks_count": 1, + "mirror_url": null, + "open_issues_count": 0, + "forks": 1, + "open_issues": 0, + "watchers": 10, + "default_branch": "master", + "score": 1.416048 + }, + { + "id": 58010306, + "name": "elm-tutorial", + "full_name": "kevinbgreene/elm-tutorial", + "owner": { + "login": "kevinbgreene", + "id": 2117840, + "avatar_url": "https://avatars.githubusercontent.com/u/2117840?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/kevinbgreene", + "html_url": "https://github.com/kevinbgreene", + "followers_url": "https://api.github.com/users/kevinbgreene/followers", + "following_url": "https://api.github.com/users/kevinbgreene/following{/other_user}", + "gists_url": "https://api.github.com/users/kevinbgreene/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kevinbgreene/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kevinbgreene/subscriptions", + "organizations_url": "https://api.github.com/users/kevinbgreene/orgs", + "repos_url": "https://api.github.com/users/kevinbgreene/repos", + "events_url": "https://api.github.com/users/kevinbgreene/events{/privacy}", + "received_events_url": "https://api.github.com/users/kevinbgreene/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/kevinbgreene/elm-tutorial", + "description": "Source for tutorial on building a single page app in Elm", + "fork": false, + "url": "https://api.github.com/repos/kevinbgreene/elm-tutorial", + "forks_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/forks", + "keys_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/teams", + "hooks_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/events", + "assignees_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/tags", + "blobs_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/subscription", + "commits_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/merges", + "archive_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/downloads", + "issues_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/kevinbgreene/elm-tutorial/deployments", + "created_at": "2016-05-04T00:19:52Z", + "updated_at": "2016-09-04T21:24:51Z", + "pushed_at": "2016-08-15T18:00:44Z", + "git_url": "git://github.com/kevinbgreene/elm-tutorial.git", + "ssh_url": "git@github.com:kevinbgreene/elm-tutorial.git", + "clone_url": "https://github.com/kevinbgreene/elm-tutorial.git", + "svn_url": "https://github.com/kevinbgreene/elm-tutorial", + "homepage": null, + "size": 14, + "stargazers_count": 9, + "watchers_count": 9, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 9, + "default_branch": "master", + "score": 5.790453 + }, + { + "id": 47454239, + "name": "elm-tutorial", + "full_name": "micktwomey/elm-tutorial", + "owner": { + "login": "micktwomey", + "id": 43349, + "avatar_url": "https://avatars.githubusercontent.com/u/43349?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/micktwomey", + "html_url": "https://github.com/micktwomey", + "followers_url": "https://api.github.com/users/micktwomey/followers", + "following_url": "https://api.github.com/users/micktwomey/following{/other_user}", + "gists_url": "https://api.github.com/users/micktwomey/gists{/gist_id}", + "starred_url": "https://api.github.com/users/micktwomey/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/micktwomey/subscriptions", + "organizations_url": "https://api.github.com/users/micktwomey/orgs", + "repos_url": "https://api.github.com/users/micktwomey/repos", + "events_url": "https://api.github.com/users/micktwomey/events{/privacy}", + "received_events_url": "https://api.github.com/users/micktwomey/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/micktwomey/elm-tutorial", + "description": "A tutorial for the Elm programming language", + "fork": false, + "url": "https://api.github.com/repos/micktwomey/elm-tutorial", + "forks_url": "https://api.github.com/repos/micktwomey/elm-tutorial/forks", + "keys_url": "https://api.github.com/repos/micktwomey/elm-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/micktwomey/elm-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/micktwomey/elm-tutorial/teams", + "hooks_url": "https://api.github.com/repos/micktwomey/elm-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/micktwomey/elm-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/micktwomey/elm-tutorial/events", + "assignees_url": "https://api.github.com/repos/micktwomey/elm-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/micktwomey/elm-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/micktwomey/elm-tutorial/tags", + "blobs_url": "https://api.github.com/repos/micktwomey/elm-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/micktwomey/elm-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/micktwomey/elm-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/micktwomey/elm-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/micktwomey/elm-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/micktwomey/elm-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/micktwomey/elm-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/micktwomey/elm-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/micktwomey/elm-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/micktwomey/elm-tutorial/subscription", + "commits_url": "https://api.github.com/repos/micktwomey/elm-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/micktwomey/elm-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/micktwomey/elm-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/micktwomey/elm-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/micktwomey/elm-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/micktwomey/elm-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/micktwomey/elm-tutorial/merges", + "archive_url": "https://api.github.com/repos/micktwomey/elm-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/micktwomey/elm-tutorial/downloads", + "issues_url": "https://api.github.com/repos/micktwomey/elm-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/micktwomey/elm-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/micktwomey/elm-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/micktwomey/elm-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/micktwomey/elm-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/micktwomey/elm-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/micktwomey/elm-tutorial/deployments", + "created_at": "2015-12-05T12:02:18Z", + "updated_at": "2016-03-26T03:15:38Z", + "pushed_at": "2016-02-04T04:38:55Z", + "git_url": "git://github.com/micktwomey/elm-tutorial.git", + "ssh_url": "git@github.com:micktwomey/elm-tutorial.git", + "clone_url": "https://github.com/micktwomey/elm-tutorial.git", + "svn_url": "https://github.com/micktwomey/elm-tutorial", + "homepage": null, + "size": 4257, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "open_issues_count": 0, + "forks": 1, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "score": 4.635503 + }, + { + "id": 56999798, + "name": "elmdemo", + "full_name": "nathanjohnson320/elmdemo", + "owner": { + "login": "nathanjohnson320", + "id": 1680341, + "avatar_url": "https://avatars.githubusercontent.com/u/1680341?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/nathanjohnson320", + "html_url": "https://github.com/nathanjohnson320", + "followers_url": "https://api.github.com/users/nathanjohnson320/followers", + "following_url": "https://api.github.com/users/nathanjohnson320/following{/other_user}", + "gists_url": "https://api.github.com/users/nathanjohnson320/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nathanjohnson320/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nathanjohnson320/subscriptions", + "organizations_url": "https://api.github.com/users/nathanjohnson320/orgs", + "repos_url": "https://api.github.com/users/nathanjohnson320/repos", + "events_url": "https://api.github.com/users/nathanjohnson320/events{/privacy}", + "received_events_url": "https://api.github.com/users/nathanjohnson320/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/nathanjohnson320/elmdemo", + "description": "elm-tutorial.org example done on phoenix", + "fork": false, + "url": "https://api.github.com/repos/nathanjohnson320/elmdemo", + "forks_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/forks", + "keys_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/teams", + "hooks_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/hooks", + "issue_events_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/issues/events{/number}", + "events_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/events", + "assignees_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/assignees{/user}", + "branches_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/branches{/branch}", + "tags_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/tags", + "blobs_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/languages", + "stargazers_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/stargazers", + "contributors_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/contributors", + "subscribers_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/subscribers", + "subscription_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/subscription", + "commits_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/contents/{+path}", + "compare_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/merges", + "archive_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/downloads", + "issues_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/issues{/number}", + "pulls_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/labels{/name}", + "releases_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/releases{/id}", + "deployments_url": "https://api.github.com/repos/nathanjohnson320/elmdemo/deployments", + "created_at": "2016-04-24T23:54:41Z", + "updated_at": "2016-06-02T06:38:34Z", + "pushed_at": "2016-05-27T01:53:09Z", + "git_url": "git://github.com/nathanjohnson320/elmdemo.git", + "ssh_url": "git@github.com:nathanjohnson320/elmdemo.git", + "clone_url": "https://github.com/nathanjohnson320/elmdemo.git", + "svn_url": "https://github.com/nathanjohnson320/elmdemo", + "homepage": null, + "size": 2052, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "score": 1.8876324 + }, + { + "id": 60957722, + "name": "elm-recipes", + "full_name": "alexspurling/elm-recipes", + "owner": { + "login": "alexspurling", + "id": 137831, + "avatar_url": "https://avatars.githubusercontent.com/u/137831?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/alexspurling", + "html_url": "https://github.com/alexspurling", + "followers_url": "https://api.github.com/users/alexspurling/followers", + "following_url": "https://api.github.com/users/alexspurling/following{/other_user}", + "gists_url": "https://api.github.com/users/alexspurling/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alexspurling/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alexspurling/subscriptions", + "organizations_url": "https://api.github.com/users/alexspurling/orgs", + "repos_url": "https://api.github.com/users/alexspurling/repos", + "events_url": "https://api.github.com/users/alexspurling/events{/privacy}", + "received_events_url": "https://api.github.com/users/alexspurling/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/alexspurling/elm-recipes", + "description": "Mini tutorials for common use cases in Elm", + "fork": false, + "url": "https://api.github.com/repos/alexspurling/elm-recipes", + "forks_url": "https://api.github.com/repos/alexspurling/elm-recipes/forks", + "keys_url": "https://api.github.com/repos/alexspurling/elm-recipes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/alexspurling/elm-recipes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/alexspurling/elm-recipes/teams", + "hooks_url": "https://api.github.com/repos/alexspurling/elm-recipes/hooks", + "issue_events_url": "https://api.github.com/repos/alexspurling/elm-recipes/issues/events{/number}", + "events_url": "https://api.github.com/repos/alexspurling/elm-recipes/events", + "assignees_url": "https://api.github.com/repos/alexspurling/elm-recipes/assignees{/user}", + "branches_url": "https://api.github.com/repos/alexspurling/elm-recipes/branches{/branch}", + "tags_url": "https://api.github.com/repos/alexspurling/elm-recipes/tags", + "blobs_url": "https://api.github.com/repos/alexspurling/elm-recipes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/alexspurling/elm-recipes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/alexspurling/elm-recipes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/alexspurling/elm-recipes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/alexspurling/elm-recipes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/alexspurling/elm-recipes/languages", + "stargazers_url": "https://api.github.com/repos/alexspurling/elm-recipes/stargazers", + "contributors_url": "https://api.github.com/repos/alexspurling/elm-recipes/contributors", + "subscribers_url": "https://api.github.com/repos/alexspurling/elm-recipes/subscribers", + "subscription_url": "https://api.github.com/repos/alexspurling/elm-recipes/subscription", + "commits_url": "https://api.github.com/repos/alexspurling/elm-recipes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/alexspurling/elm-recipes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/alexspurling/elm-recipes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/alexspurling/elm-recipes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/alexspurling/elm-recipes/contents/{+path}", + "compare_url": "https://api.github.com/repos/alexspurling/elm-recipes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/alexspurling/elm-recipes/merges", + "archive_url": "https://api.github.com/repos/alexspurling/elm-recipes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/alexspurling/elm-recipes/downloads", + "issues_url": "https://api.github.com/repos/alexspurling/elm-recipes/issues{/number}", + "pulls_url": "https://api.github.com/repos/alexspurling/elm-recipes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/alexspurling/elm-recipes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/alexspurling/elm-recipes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/alexspurling/elm-recipes/labels{/name}", + "releases_url": "https://api.github.com/repos/alexspurling/elm-recipes/releases{/id}", + "deployments_url": "https://api.github.com/repos/alexspurling/elm-recipes/deployments", + "created_at": "2016-06-12T09:06:01Z", + "updated_at": "2016-06-16T19:12:50Z", + "pushed_at": "2016-06-25T10:19:25Z", + "git_url": "git://github.com/alexspurling/elm-recipes.git", + "ssh_url": "git@github.com:alexspurling/elm-recipes.git", + "clone_url": "https://github.com/alexspurling/elm-recipes.git", + "svn_url": "https://github.com/alexspurling/elm-recipes", + "homepage": null, + "size": 154, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "master", + "score": 1.8876324 + }, + { + "id": 52304111, + "name": "elm-functionalkats-tutorial", + "full_name": "micktwomey/elm-functionalkats-tutorial", + "owner": { + "login": "micktwomey", + "id": 43349, + "avatar_url": "https://avatars.githubusercontent.com/u/43349?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/micktwomey", + "html_url": "https://github.com/micktwomey", + "followers_url": "https://api.github.com/users/micktwomey/followers", + "following_url": "https://api.github.com/users/micktwomey/following{/other_user}", + "gists_url": "https://api.github.com/users/micktwomey/gists{/gist_id}", + "starred_url": "https://api.github.com/users/micktwomey/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/micktwomey/subscriptions", + "organizations_url": "https://api.github.com/users/micktwomey/orgs", + "repos_url": "https://api.github.com/users/micktwomey/repos", + "events_url": "https://api.github.com/users/micktwomey/events{/privacy}", + "received_events_url": "https://api.github.com/users/micktwomey/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/micktwomey/elm-functionalkats-tutorial", + "description": "Slides, examples and exercises for Functional Kats February 23rd 2016", + "fork": false, + "url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial", + "forks_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/forks", + "keys_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/teams", + "hooks_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/events", + "assignees_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/tags", + "blobs_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/subscription", + "commits_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/merges", + "archive_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/downloads", + "issues_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/micktwomey/elm-functionalkats-tutorial/deployments", + "created_at": "2016-02-22T20:41:36Z", + "updated_at": "2016-02-24T20:04:28Z", + "pushed_at": "2016-02-24T12:47:58Z", + "git_url": "git://github.com/micktwomey/elm-functionalkats-tutorial.git", + "ssh_url": "git@github.com:micktwomey/elm-functionalkats-tutorial.git", + "clone_url": "https://github.com/micktwomey/elm-functionalkats-tutorial.git", + "svn_url": "https://github.com/micktwomey/elm-functionalkats-tutorial", + "homepage": null, + "size": 4233, + "stargazers_count": 2, + "watchers_count": 2, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master", + "score": 3.480734 + }, + { + "id": 54821238, + "name": "tutorial", + "full_name": "elm-wellington/tutorial", + "owner": { + "login": "elm-wellington", + "id": 17491682, + "avatar_url": "https://avatars.githubusercontent.com/u/17491682?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/elm-wellington", + "html_url": "https://github.com/elm-wellington", + "followers_url": "https://api.github.com/users/elm-wellington/followers", + "following_url": "https://api.github.com/users/elm-wellington/following{/other_user}", + "gists_url": "https://api.github.com/users/elm-wellington/gists{/gist_id}", + "starred_url": "https://api.github.com/users/elm-wellington/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/elm-wellington/subscriptions", + "organizations_url": "https://api.github.com/users/elm-wellington/orgs", + "repos_url": "https://api.github.com/users/elm-wellington/repos", + "events_url": "https://api.github.com/users/elm-wellington/events{/privacy}", + "received_events_url": "https://api.github.com/users/elm-wellington/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/elm-wellington/tutorial", + "description": "Short tutorial on Elm architecture", + "fork": false, + "url": "https://api.github.com/repos/elm-wellington/tutorial", + "forks_url": "https://api.github.com/repos/elm-wellington/tutorial/forks", + "keys_url": "https://api.github.com/repos/elm-wellington/tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/elm-wellington/tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/elm-wellington/tutorial/teams", + "hooks_url": "https://api.github.com/repos/elm-wellington/tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/elm-wellington/tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/elm-wellington/tutorial/events", + "assignees_url": "https://api.github.com/repos/elm-wellington/tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/elm-wellington/tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/elm-wellington/tutorial/tags", + "blobs_url": "https://api.github.com/repos/elm-wellington/tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/elm-wellington/tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/elm-wellington/tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/elm-wellington/tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/elm-wellington/tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/elm-wellington/tutorial/languages", + "stargazers_url": "https://api.github.com/repos/elm-wellington/tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/elm-wellington/tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/elm-wellington/tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/elm-wellington/tutorial/subscription", + "commits_url": "https://api.github.com/repos/elm-wellington/tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/elm-wellington/tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/elm-wellington/tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/elm-wellington/tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/elm-wellington/tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/elm-wellington/tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/elm-wellington/tutorial/merges", + "archive_url": "https://api.github.com/repos/elm-wellington/tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/elm-wellington/tutorial/downloads", + "issues_url": "https://api.github.com/repos/elm-wellington/tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/elm-wellington/tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/elm-wellington/tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/elm-wellington/tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/elm-wellington/tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/elm-wellington/tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/elm-wellington/tutorial/deployments", + "created_at": "2016-03-27T09:23:24Z", + "updated_at": "2016-03-30T03:46:48Z", + "pushed_at": "2016-03-28T11:09:32Z", + "git_url": "git://github.com/elm-wellington/tutorial.git", + "ssh_url": "git@github.com:elm-wellington/tutorial.git", + "clone_url": "https://github.com/elm-wellington/tutorial.git", + "svn_url": "https://github.com/elm-wellington/tutorial", + "homepage": "", + "size": 5, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 8.467301 + }, + { + "id": 23587211, + "name": "cufp-tutorial", + "full_name": "evancz/cufp-tutorial", + "owner": { + "login": "evancz", + "id": 1658058, + "avatar_url": "https://avatars.githubusercontent.com/u/1658058?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/evancz", + "html_url": "https://github.com/evancz", + "followers_url": "https://api.github.com/users/evancz/followers", + "following_url": "https://api.github.com/users/evancz/following{/other_user}", + "gists_url": "https://api.github.com/users/evancz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/evancz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/evancz/subscriptions", + "organizations_url": "https://api.github.com/users/evancz/orgs", + "repos_url": "https://api.github.com/users/evancz/repos", + "events_url": "https://api.github.com/users/evancz/events{/privacy}", + "received_events_url": "https://api.github.com/users/evancz/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/evancz/cufp-tutorial", + "description": "Practice problems for the Elm tutorial at CUFP 2014", + "fork": false, + "url": "https://api.github.com/repos/evancz/cufp-tutorial", + "forks_url": "https://api.github.com/repos/evancz/cufp-tutorial/forks", + "keys_url": "https://api.github.com/repos/evancz/cufp-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/evancz/cufp-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/evancz/cufp-tutorial/teams", + "hooks_url": "https://api.github.com/repos/evancz/cufp-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/evancz/cufp-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/evancz/cufp-tutorial/events", + "assignees_url": "https://api.github.com/repos/evancz/cufp-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/evancz/cufp-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/evancz/cufp-tutorial/tags", + "blobs_url": "https://api.github.com/repos/evancz/cufp-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/evancz/cufp-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/evancz/cufp-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/evancz/cufp-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/evancz/cufp-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/evancz/cufp-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/evancz/cufp-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/evancz/cufp-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/evancz/cufp-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/evancz/cufp-tutorial/subscription", + "commits_url": "https://api.github.com/repos/evancz/cufp-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/evancz/cufp-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/evancz/cufp-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/evancz/cufp-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/evancz/cufp-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/evancz/cufp-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/evancz/cufp-tutorial/merges", + "archive_url": "https://api.github.com/repos/evancz/cufp-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/evancz/cufp-tutorial/downloads", + "issues_url": "https://api.github.com/repos/evancz/cufp-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/evancz/cufp-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/evancz/cufp-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/evancz/cufp-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/evancz/cufp-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/evancz/cufp-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/evancz/cufp-tutorial/deployments", + "created_at": "2014-09-02T16:55:30Z", + "updated_at": "2016-03-08T16:49:32Z", + "pushed_at": "2015-01-09T07:16:15Z", + "git_url": "git://github.com/evancz/cufp-tutorial.git", + "ssh_url": "git@github.com:evancz/cufp-tutorial.git", + "clone_url": "https://github.com/evancz/cufp-tutorial.git", + "svn_url": "https://github.com/evancz/cufp-tutorial", + "homepage": null, + "size": 222, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 2, + "mirror_url": null, + "open_issues_count": 0, + "forks": 2, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 4.640979 + }, + { + "id": 51236031, + "name": "elm-tutorial", + "full_name": "nylo-andry/elm-tutorial", + "owner": { + "login": "nylo-andry", + "id": 1200897, + "avatar_url": "https://avatars.githubusercontent.com/u/1200897?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/nylo-andry", + "html_url": "https://github.com/nylo-andry", + "followers_url": "https://api.github.com/users/nylo-andry/followers", + "following_url": "https://api.github.com/users/nylo-andry/following{/other_user}", + "gists_url": "https://api.github.com/users/nylo-andry/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nylo-andry/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nylo-andry/subscriptions", + "organizations_url": "https://api.github.com/users/nylo-andry/orgs", + "repos_url": "https://api.github.com/users/nylo-andry/repos", + "events_url": "https://api.github.com/users/nylo-andry/events{/privacy}", + "received_events_url": "https://api.github.com/users/nylo-andry/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/nylo-andry/elm-tutorial", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/nylo-andry/elm-tutorial", + "forks_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/forks", + "keys_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/teams", + "hooks_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/events", + "assignees_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/tags", + "blobs_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/subscription", + "commits_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/merges", + "archive_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/downloads", + "issues_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/nylo-andry/elm-tutorial/deployments", + "created_at": "2016-02-07T04:57:45Z", + "updated_at": "2016-02-07T20:06:59Z", + "pushed_at": "2016-02-07T04:59:18Z", + "git_url": "git://github.com/nylo-andry/elm-tutorial.git", + "ssh_url": "git@github.com:nylo-andry/elm-tutorial.git", + "clone_url": "https://github.com/nylo-andry/elm-tutorial.git", + "svn_url": "https://github.com/nylo-andry/elm-tutorial", + "homepage": null, + "size": 2, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 2.9006119 + }, + { + "id": 52499357, + "name": "elm-tutorial", + "full_name": "oren/elm-tutorial", + "owner": { + "login": "oren", + "id": 6517, + "avatar_url": "https://avatars.githubusercontent.com/u/6517?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/oren", + "html_url": "https://github.com/oren", + "followers_url": "https://api.github.com/users/oren/followers", + "following_url": "https://api.github.com/users/oren/following{/other_user}", + "gists_url": "https://api.github.com/users/oren/gists{/gist_id}", + "starred_url": "https://api.github.com/users/oren/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/oren/subscriptions", + "organizations_url": "https://api.github.com/users/oren/orgs", + "repos_url": "https://api.github.com/users/oren/repos", + "events_url": "https://api.github.com/users/oren/events{/privacy}", + "received_events_url": "https://api.github.com/users/oren/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/oren/elm-tutorial", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/oren/elm-tutorial", + "forks_url": "https://api.github.com/repos/oren/elm-tutorial/forks", + "keys_url": "https://api.github.com/repos/oren/elm-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/oren/elm-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/oren/elm-tutorial/teams", + "hooks_url": "https://api.github.com/repos/oren/elm-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/oren/elm-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/oren/elm-tutorial/events", + "assignees_url": "https://api.github.com/repos/oren/elm-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/oren/elm-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/oren/elm-tutorial/tags", + "blobs_url": "https://api.github.com/repos/oren/elm-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/oren/elm-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/oren/elm-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/oren/elm-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/oren/elm-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/oren/elm-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/oren/elm-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/oren/elm-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/oren/elm-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/oren/elm-tutorial/subscription", + "commits_url": "https://api.github.com/repos/oren/elm-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/oren/elm-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/oren/elm-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/oren/elm-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/oren/elm-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/oren/elm-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/oren/elm-tutorial/merges", + "archive_url": "https://api.github.com/repos/oren/elm-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/oren/elm-tutorial/downloads", + "issues_url": "https://api.github.com/repos/oren/elm-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/oren/elm-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/oren/elm-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/oren/elm-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/oren/elm-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/oren/elm-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/oren/elm-tutorial/deployments", + "created_at": "2016-02-25T05:29:40Z", + "updated_at": "2016-02-26T06:19:10Z", + "pushed_at": "2016-02-25T05:35:29Z", + "git_url": "git://github.com/oren/elm-tutorial.git", + "ssh_url": "git@github.com:oren/elm-tutorial.git", + "clone_url": "https://github.com/oren/elm-tutorial.git", + "svn_url": "https://github.com/oren/elm-tutorial", + "homepage": null, + "size": 1, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 2.8971891 + }, + { + "id": 46183493, + "name": "elm-tutorial-1", + "full_name": "nLight/elm-tutorial-1", + "owner": { + "login": "nLight", + "id": 186223, + "avatar_url": "https://avatars.githubusercontent.com/u/186223?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/nLight", + "html_url": "https://github.com/nLight", + "followers_url": "https://api.github.com/users/nLight/followers", + "following_url": "https://api.github.com/users/nLight/following{/other_user}", + "gists_url": "https://api.github.com/users/nLight/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nLight/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nLight/subscriptions", + "organizations_url": "https://api.github.com/users/nLight/orgs", + "repos_url": "https://api.github.com/users/nLight/repos", + "events_url": "https://api.github.com/users/nLight/events{/privacy}", + "received_events_url": "https://api.github.com/users/nLight/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/nLight/elm-tutorial-1", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/nLight/elm-tutorial-1", + "forks_url": "https://api.github.com/repos/nLight/elm-tutorial-1/forks", + "keys_url": "https://api.github.com/repos/nLight/elm-tutorial-1/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nLight/elm-tutorial-1/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nLight/elm-tutorial-1/teams", + "hooks_url": "https://api.github.com/repos/nLight/elm-tutorial-1/hooks", + "issue_events_url": "https://api.github.com/repos/nLight/elm-tutorial-1/issues/events{/number}", + "events_url": "https://api.github.com/repos/nLight/elm-tutorial-1/events", + "assignees_url": "https://api.github.com/repos/nLight/elm-tutorial-1/assignees{/user}", + "branches_url": "https://api.github.com/repos/nLight/elm-tutorial-1/branches{/branch}", + "tags_url": "https://api.github.com/repos/nLight/elm-tutorial-1/tags", + "blobs_url": "https://api.github.com/repos/nLight/elm-tutorial-1/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nLight/elm-tutorial-1/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nLight/elm-tutorial-1/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nLight/elm-tutorial-1/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nLight/elm-tutorial-1/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nLight/elm-tutorial-1/languages", + "stargazers_url": "https://api.github.com/repos/nLight/elm-tutorial-1/stargazers", + "contributors_url": "https://api.github.com/repos/nLight/elm-tutorial-1/contributors", + "subscribers_url": "https://api.github.com/repos/nLight/elm-tutorial-1/subscribers", + "subscription_url": "https://api.github.com/repos/nLight/elm-tutorial-1/subscription", + "commits_url": "https://api.github.com/repos/nLight/elm-tutorial-1/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nLight/elm-tutorial-1/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nLight/elm-tutorial-1/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nLight/elm-tutorial-1/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/nLight/elm-tutorial-1/contents/{+path}", + "compare_url": "https://api.github.com/repos/nLight/elm-tutorial-1/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nLight/elm-tutorial-1/merges", + "archive_url": "https://api.github.com/repos/nLight/elm-tutorial-1/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nLight/elm-tutorial-1/downloads", + "issues_url": "https://api.github.com/repos/nLight/elm-tutorial-1/issues{/number}", + "pulls_url": "https://api.github.com/repos/nLight/elm-tutorial-1/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nLight/elm-tutorial-1/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nLight/elm-tutorial-1/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nLight/elm-tutorial-1/labels{/name}", + "releases_url": "https://api.github.com/repos/nLight/elm-tutorial-1/releases{/id}", + "deployments_url": "https://api.github.com/repos/nLight/elm-tutorial-1/deployments", + "created_at": "2015-11-14T17:05:11Z", + "updated_at": "2016-05-10T22:24:45Z", + "pushed_at": "2016-05-12T19:17:55Z", + "git_url": "git://github.com/nLight/elm-tutorial-1.git", + "ssh_url": "git@github.com:nLight/elm-tutorial-1.git", + "clone_url": "https://github.com/nLight/elm-tutorial-1.git", + "svn_url": "https://github.com/nLight/elm-tutorial-1", + "homepage": null, + "size": 794, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 1, + "mirror_url": null, + "open_issues_count": 0, + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 2.3177514 + }, + { + "id": 64362922, + "name": "elm-tutorial-at-noredink", + "full_name": "j127/elm-tutorial-at-noredink", + "owner": { + "login": "j127", + "id": 96479, + "avatar_url": "https://avatars.githubusercontent.com/u/96479?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/j127", + "html_url": "https://github.com/j127", + "followers_url": "https://api.github.com/users/j127/followers", + "following_url": "https://api.github.com/users/j127/following{/other_user}", + "gists_url": "https://api.github.com/users/j127/gists{/gist_id}", + "starred_url": "https://api.github.com/users/j127/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/j127/subscriptions", + "organizations_url": "https://api.github.com/users/j127/orgs", + "repos_url": "https://api.github.com/users/j127/repos", + "events_url": "https://api.github.com/users/j127/events{/privacy}", + "received_events_url": "https://api.github.com/users/j127/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/j127/elm-tutorial-at-noredink", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink", + "forks_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/forks", + "keys_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/teams", + "hooks_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/hooks", + "issue_events_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/issues/events{/number}", + "events_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/events", + "assignees_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/assignees{/user}", + "branches_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/branches{/branch}", + "tags_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/tags", + "blobs_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/statuses/{sha}", + "languages_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/languages", + "stargazers_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/stargazers", + "contributors_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/contributors", + "subscribers_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/subscribers", + "subscription_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/subscription", + "commits_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/contents/{+path}", + "compare_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/merges", + "archive_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/downloads", + "issues_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/issues{/number}", + "pulls_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/pulls{/number}", + "milestones_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/milestones{/number}", + "notifications_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/labels{/name}", + "releases_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/releases{/id}", + "deployments_url": "https://api.github.com/repos/j127/elm-tutorial-at-noredink/deployments", + "created_at": "2016-07-28T03:57:09Z", + "updated_at": "2016-07-28T10:42:47Z", + "pushed_at": "2016-07-28T06:35:09Z", + "git_url": "git://github.com/j127/elm-tutorial-at-noredink.git", + "ssh_url": "git@github.com:j127/elm-tutorial-at-noredink.git", + "clone_url": "https://github.com/j127/elm-tutorial-at-noredink.git", + "svn_url": "https://github.com/j127/elm-tutorial-at-noredink", + "homepage": null, + "size": 3, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 2.3177514 + }, + { + "id": 56989347, + "name": "elm_tutorial_extended", + "full_name": "lyddonb/elm_tutorial_extended", + "owner": { + "login": "lyddonb", + "id": 82531, + "avatar_url": "https://avatars.githubusercontent.com/u/82531?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/lyddonb", + "html_url": "https://github.com/lyddonb", + "followers_url": "https://api.github.com/users/lyddonb/followers", + "following_url": "https://api.github.com/users/lyddonb/following{/other_user}", + "gists_url": "https://api.github.com/users/lyddonb/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lyddonb/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lyddonb/subscriptions", + "organizations_url": "https://api.github.com/users/lyddonb/orgs", + "repos_url": "https://api.github.com/users/lyddonb/repos", + "events_url": "https://api.github.com/users/lyddonb/events{/privacy}", + "received_events_url": "https://api.github.com/users/lyddonb/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/lyddonb/elm_tutorial_extended", + "description": "The ELM Tutorial Starter App with some extra tweaks", + "fork": false, + "url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended", + "forks_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/forks", + "keys_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/teams", + "hooks_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/hooks", + "issue_events_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/issues/events{/number}", + "events_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/events", + "assignees_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/assignees{/user}", + "branches_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/branches{/branch}", + "tags_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/tags", + "blobs_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/statuses/{sha}", + "languages_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/languages", + "stargazers_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/stargazers", + "contributors_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/contributors", + "subscribers_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/subscribers", + "subscription_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/subscription", + "commits_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/contents/{+path}", + "compare_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/merges", + "archive_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/downloads", + "issues_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/issues{/number}", + "pulls_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/pulls{/number}", + "milestones_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/milestones{/number}", + "notifications_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/labels{/name}", + "releases_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/releases{/id}", + "deployments_url": "https://api.github.com/repos/lyddonb/elm_tutorial_extended/deployments", + "created_at": "2016-04-24T19:07:52Z", + "updated_at": "2016-04-25T17:56:56Z", + "pushed_at": "2016-04-27T03:07:13Z", + "git_url": "git://github.com/lyddonb/elm_tutorial_extended.git", + "ssh_url": "git@github.com:lyddonb/elm_tutorial_extended.git", + "clone_url": "https://github.com/lyddonb/elm_tutorial_extended.git", + "svn_url": "https://github.com/lyddonb/elm_tutorial_extended", + "homepage": null, + "size": 15, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 2.3161812 + }, + { + "id": 67386347, + "name": "tutorial-with-editors", + "full_name": "jessitron/tutorial-with-editors", + "owner": { + "login": "jessitron", + "id": 1149737, + "avatar_url": "https://avatars.githubusercontent.com/u/1149737?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/jessitron", + "html_url": "https://github.com/jessitron", + "followers_url": "https://api.github.com/users/jessitron/followers", + "following_url": "https://api.github.com/users/jessitron/following{/other_user}", + "gists_url": "https://api.github.com/users/jessitron/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jessitron/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jessitron/subscriptions", + "organizations_url": "https://api.github.com/users/jessitron/orgs", + "repos_url": "https://api.github.com/users/jessitron/repos", + "events_url": "https://api.github.com/users/jessitron/events{/privacy}", + "received_events_url": "https://api.github.com/users/jessitron/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jessitron/tutorial-with-editors", + "description": "impl elm tutorial bits", + "fork": false, + "url": "https://api.github.com/repos/jessitron/tutorial-with-editors", + "forks_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/forks", + "keys_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/teams", + "hooks_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/hooks", + "issue_events_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/issues/events{/number}", + "events_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/events", + "assignees_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/assignees{/user}", + "branches_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/branches{/branch}", + "tags_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/tags", + "blobs_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/languages", + "stargazers_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/stargazers", + "contributors_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/contributors", + "subscribers_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/subscribers", + "subscription_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/subscription", + "commits_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/contents/{+path}", + "compare_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/merges", + "archive_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/downloads", + "issues_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/issues{/number}", + "pulls_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/labels{/name}", + "releases_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/releases{/id}", + "deployments_url": "https://api.github.com/repos/jessitron/tutorial-with-editors/deployments", + "created_at": "2016-09-05T03:50:18Z", + "updated_at": "2016-09-05T22:49:37Z", + "pushed_at": "2016-09-06T00:04:01Z", + "git_url": "git://github.com/jessitron/tutorial-with-editors.git", + "ssh_url": "git@github.com:jessitron/tutorial-with-editors.git", + "clone_url": "https://github.com/jessitron/tutorial-with-editors.git", + "svn_url": "https://github.com/jessitron/tutorial-with-editors", + "homepage": null, + "size": 433, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 2.3141148 + }, + { + "id": 61680491, + "name": "simple-spa", + "full_name": "ashishsc/simple-spa", + "owner": { + "login": "ashishsc", + "id": 2625802, + "avatar_url": "https://avatars.githubusercontent.com/u/2625802?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/ashishsc", + "html_url": "https://github.com/ashishsc", + "followers_url": "https://api.github.com/users/ashishsc/followers", + "following_url": "https://api.github.com/users/ashishsc/following{/other_user}", + "gists_url": "https://api.github.com/users/ashishsc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ashishsc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ashishsc/subscriptions", + "organizations_url": "https://api.github.com/users/ashishsc/orgs", + "repos_url": "https://api.github.com/users/ashishsc/repos", + "events_url": "https://api.github.com/users/ashishsc/events{/privacy}", + "received_events_url": "https://api.github.com/users/ashishsc/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/ashishsc/simple-spa", + "description": "via elm-tutorial.org", + "fork": false, + "url": "https://api.github.com/repos/ashishsc/simple-spa", + "forks_url": "https://api.github.com/repos/ashishsc/simple-spa/forks", + "keys_url": "https://api.github.com/repos/ashishsc/simple-spa/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ashishsc/simple-spa/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ashishsc/simple-spa/teams", + "hooks_url": "https://api.github.com/repos/ashishsc/simple-spa/hooks", + "issue_events_url": "https://api.github.com/repos/ashishsc/simple-spa/issues/events{/number}", + "events_url": "https://api.github.com/repos/ashishsc/simple-spa/events", + "assignees_url": "https://api.github.com/repos/ashishsc/simple-spa/assignees{/user}", + "branches_url": "https://api.github.com/repos/ashishsc/simple-spa/branches{/branch}", + "tags_url": "https://api.github.com/repos/ashishsc/simple-spa/tags", + "blobs_url": "https://api.github.com/repos/ashishsc/simple-spa/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ashishsc/simple-spa/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ashishsc/simple-spa/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ashishsc/simple-spa/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ashishsc/simple-spa/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ashishsc/simple-spa/languages", + "stargazers_url": "https://api.github.com/repos/ashishsc/simple-spa/stargazers", + "contributors_url": "https://api.github.com/repos/ashishsc/simple-spa/contributors", + "subscribers_url": "https://api.github.com/repos/ashishsc/simple-spa/subscribers", + "subscription_url": "https://api.github.com/repos/ashishsc/simple-spa/subscription", + "commits_url": "https://api.github.com/repos/ashishsc/simple-spa/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ashishsc/simple-spa/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ashishsc/simple-spa/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ashishsc/simple-spa/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/ashishsc/simple-spa/contents/{+path}", + "compare_url": "https://api.github.com/repos/ashishsc/simple-spa/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ashishsc/simple-spa/merges", + "archive_url": "https://api.github.com/repos/ashishsc/simple-spa/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ashishsc/simple-spa/downloads", + "issues_url": "https://api.github.com/repos/ashishsc/simple-spa/issues{/number}", + "pulls_url": "https://api.github.com/repos/ashishsc/simple-spa/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ashishsc/simple-spa/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ashishsc/simple-spa/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ashishsc/simple-spa/labels{/name}", + "releases_url": "https://api.github.com/repos/ashishsc/simple-spa/releases{/id}", + "deployments_url": "https://api.github.com/repos/ashishsc/simple-spa/deployments", + "created_at": "2016-06-22T01:51:50Z", + "updated_at": "2016-08-15T03:19:58Z", + "pushed_at": "2016-08-09T02:30:10Z", + "git_url": "git://github.com/ashishsc/simple-spa.git", + "ssh_url": "git@github.com:ashishsc/simple-spa.git", + "clone_url": "https://github.com/ashishsc/simple-spa.git", + "svn_url": "https://github.com/ashishsc/simple-spa", + "homepage": null, + "size": 18, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 1.8927928 + }, + { + "id": 53198576, + "name": "players_app", + "full_name": "matthewbpt/players_app", + "owner": { + "login": "matthewbpt", + "id": 1359262, + "avatar_url": "https://avatars.githubusercontent.com/u/1359262?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/matthewbpt", + "html_url": "https://github.com/matthewbpt", + "followers_url": "https://api.github.com/users/matthewbpt/followers", + "following_url": "https://api.github.com/users/matthewbpt/following{/other_user}", + "gists_url": "https://api.github.com/users/matthewbpt/gists{/gist_id}", + "starred_url": "https://api.github.com/users/matthewbpt/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/matthewbpt/subscriptions", + "organizations_url": "https://api.github.com/users/matthewbpt/orgs", + "repos_url": "https://api.github.com/users/matthewbpt/repos", + "events_url": "https://api.github.com/users/matthewbpt/events{/privacy}", + "received_events_url": "https://api.github.com/users/matthewbpt/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/matthewbpt/players_app", + "description": "Elm tutorial app", + "fork": false, + "url": "https://api.github.com/repos/matthewbpt/players_app", + "forks_url": "https://api.github.com/repos/matthewbpt/players_app/forks", + "keys_url": "https://api.github.com/repos/matthewbpt/players_app/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/matthewbpt/players_app/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/matthewbpt/players_app/teams", + "hooks_url": "https://api.github.com/repos/matthewbpt/players_app/hooks", + "issue_events_url": "https://api.github.com/repos/matthewbpt/players_app/issues/events{/number}", + "events_url": "https://api.github.com/repos/matthewbpt/players_app/events", + "assignees_url": "https://api.github.com/repos/matthewbpt/players_app/assignees{/user}", + "branches_url": "https://api.github.com/repos/matthewbpt/players_app/branches{/branch}", + "tags_url": "https://api.github.com/repos/matthewbpt/players_app/tags", + "blobs_url": "https://api.github.com/repos/matthewbpt/players_app/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/matthewbpt/players_app/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/matthewbpt/players_app/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/matthewbpt/players_app/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/matthewbpt/players_app/statuses/{sha}", + "languages_url": "https://api.github.com/repos/matthewbpt/players_app/languages", + "stargazers_url": "https://api.github.com/repos/matthewbpt/players_app/stargazers", + "contributors_url": "https://api.github.com/repos/matthewbpt/players_app/contributors", + "subscribers_url": "https://api.github.com/repos/matthewbpt/players_app/subscribers", + "subscription_url": "https://api.github.com/repos/matthewbpt/players_app/subscription", + "commits_url": "https://api.github.com/repos/matthewbpt/players_app/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/matthewbpt/players_app/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/matthewbpt/players_app/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/matthewbpt/players_app/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/matthewbpt/players_app/contents/{+path}", + "compare_url": "https://api.github.com/repos/matthewbpt/players_app/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/matthewbpt/players_app/merges", + "archive_url": "https://api.github.com/repos/matthewbpt/players_app/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/matthewbpt/players_app/downloads", + "issues_url": "https://api.github.com/repos/matthewbpt/players_app/issues{/number}", + "pulls_url": "https://api.github.com/repos/matthewbpt/players_app/pulls{/number}", + "milestones_url": "https://api.github.com/repos/matthewbpt/players_app/milestones{/number}", + "notifications_url": "https://api.github.com/repos/matthewbpt/players_app/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/matthewbpt/players_app/labels{/name}", + "releases_url": "https://api.github.com/repos/matthewbpt/players_app/releases{/id}", + "deployments_url": "https://api.github.com/repos/matthewbpt/players_app/deployments", + "created_at": "2016-03-05T11:40:16Z", + "updated_at": "2016-03-05T20:23:02Z", + "pushed_at": "2016-03-05T11:41:57Z", + "git_url": "git://github.com/matthewbpt/players_app.git", + "ssh_url": "git@github.com:matthewbpt/players_app.git", + "clone_url": "https://github.com/matthewbpt/players_app.git", + "svn_url": "https://github.com/matthewbpt/players_app", + "homepage": null, + "size": 8, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 1.8880641 + }, + { + "id": 65228718, + "name": "elm-workshop", + "full_name": "jjst/elm-workshop", + "owner": { + "login": "jjst", + "id": 4924090, + "avatar_url": "https://avatars.githubusercontent.com/u/4924090?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/jjst", + "html_url": "https://github.com/jjst", + "followers_url": "https://api.github.com/users/jjst/followers", + "following_url": "https://api.github.com/users/jjst/following{/other_user}", + "gists_url": "https://api.github.com/users/jjst/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jjst/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jjst/subscriptions", + "organizations_url": "https://api.github.com/users/jjst/orgs", + "repos_url": "https://api.github.com/users/jjst/repos", + "events_url": "https://api.github.com/users/jjst/events{/privacy}", + "received_events_url": "https://api.github.com/users/jjst/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/jjst/elm-workshop", + "description": "Elm workshop/tutorial to recreate Lights Out", + "fork": false, + "url": "https://api.github.com/repos/jjst/elm-workshop", + "forks_url": "https://api.github.com/repos/jjst/elm-workshop/forks", + "keys_url": "https://api.github.com/repos/jjst/elm-workshop/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jjst/elm-workshop/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jjst/elm-workshop/teams", + "hooks_url": "https://api.github.com/repos/jjst/elm-workshop/hooks", + "issue_events_url": "https://api.github.com/repos/jjst/elm-workshop/issues/events{/number}", + "events_url": "https://api.github.com/repos/jjst/elm-workshop/events", + "assignees_url": "https://api.github.com/repos/jjst/elm-workshop/assignees{/user}", + "branches_url": "https://api.github.com/repos/jjst/elm-workshop/branches{/branch}", + "tags_url": "https://api.github.com/repos/jjst/elm-workshop/tags", + "blobs_url": "https://api.github.com/repos/jjst/elm-workshop/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jjst/elm-workshop/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jjst/elm-workshop/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jjst/elm-workshop/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jjst/elm-workshop/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jjst/elm-workshop/languages", + "stargazers_url": "https://api.github.com/repos/jjst/elm-workshop/stargazers", + "contributors_url": "https://api.github.com/repos/jjst/elm-workshop/contributors", + "subscribers_url": "https://api.github.com/repos/jjst/elm-workshop/subscribers", + "subscription_url": "https://api.github.com/repos/jjst/elm-workshop/subscription", + "commits_url": "https://api.github.com/repos/jjst/elm-workshop/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jjst/elm-workshop/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jjst/elm-workshop/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jjst/elm-workshop/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jjst/elm-workshop/contents/{+path}", + "compare_url": "https://api.github.com/repos/jjst/elm-workshop/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jjst/elm-workshop/merges", + "archive_url": "https://api.github.com/repos/jjst/elm-workshop/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jjst/elm-workshop/downloads", + "issues_url": "https://api.github.com/repos/jjst/elm-workshop/issues{/number}", + "pulls_url": "https://api.github.com/repos/jjst/elm-workshop/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jjst/elm-workshop/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jjst/elm-workshop/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jjst/elm-workshop/labels{/name}", + "releases_url": "https://api.github.com/repos/jjst/elm-workshop/releases{/id}", + "deployments_url": "https://api.github.com/repos/jjst/elm-workshop/deployments", + "created_at": "2016-08-08T18:27:35Z", + "updated_at": "2016-08-08T20:17:26Z", + "pushed_at": "2016-08-08T19:27:21Z", + "git_url": "git://github.com/jjst/elm-workshop.git", + "ssh_url": "git@github.com:jjst/elm-workshop.git", + "clone_url": "https://github.com/jjst/elm-workshop.git", + "svn_url": "https://github.com/jjst/elm-workshop", + "homepage": null, + "size": 18, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 1.4195946 + }, + { + "id": 59641003, + "name": "elm-twelve-tone", + "full_name": "danigb/elm-twelve-tone", + "owner": { + "login": "danigb", + "id": 7457, + "avatar_url": "https://avatars.githubusercontent.com/u/7457?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/danigb", + "html_url": "https://github.com/danigb", + "followers_url": "https://api.github.com/users/danigb/followers", + "following_url": "https://api.github.com/users/danigb/following{/other_user}", + "gists_url": "https://api.github.com/users/danigb/gists{/gist_id}", + "starred_url": "https://api.github.com/users/danigb/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/danigb/subscriptions", + "organizations_url": "https://api.github.com/users/danigb/orgs", + "repos_url": "https://api.github.com/users/danigb/repos", + "events_url": "https://api.github.com/users/danigb/events{/privacy}", + "received_events_url": "https://api.github.com/users/danigb/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/danigb/elm-twelve-tone", + "description": "Simple tutorial to setup a test driven project in elm-lang", + "fork": false, + "url": "https://api.github.com/repos/danigb/elm-twelve-tone", + "forks_url": "https://api.github.com/repos/danigb/elm-twelve-tone/forks", + "keys_url": "https://api.github.com/repos/danigb/elm-twelve-tone/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/danigb/elm-twelve-tone/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/danigb/elm-twelve-tone/teams", + "hooks_url": "https://api.github.com/repos/danigb/elm-twelve-tone/hooks", + "issue_events_url": "https://api.github.com/repos/danigb/elm-twelve-tone/issues/events{/number}", + "events_url": "https://api.github.com/repos/danigb/elm-twelve-tone/events", + "assignees_url": "https://api.github.com/repos/danigb/elm-twelve-tone/assignees{/user}", + "branches_url": "https://api.github.com/repos/danigb/elm-twelve-tone/branches{/branch}", + "tags_url": "https://api.github.com/repos/danigb/elm-twelve-tone/tags", + "blobs_url": "https://api.github.com/repos/danigb/elm-twelve-tone/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/danigb/elm-twelve-tone/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/danigb/elm-twelve-tone/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/danigb/elm-twelve-tone/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/danigb/elm-twelve-tone/statuses/{sha}", + "languages_url": "https://api.github.com/repos/danigb/elm-twelve-tone/languages", + "stargazers_url": "https://api.github.com/repos/danigb/elm-twelve-tone/stargazers", + "contributors_url": "https://api.github.com/repos/danigb/elm-twelve-tone/contributors", + "subscribers_url": "https://api.github.com/repos/danigb/elm-twelve-tone/subscribers", + "subscription_url": "https://api.github.com/repos/danigb/elm-twelve-tone/subscription", + "commits_url": "https://api.github.com/repos/danigb/elm-twelve-tone/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/danigb/elm-twelve-tone/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/danigb/elm-twelve-tone/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/danigb/elm-twelve-tone/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/danigb/elm-twelve-tone/contents/{+path}", + "compare_url": "https://api.github.com/repos/danigb/elm-twelve-tone/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/danigb/elm-twelve-tone/merges", + "archive_url": "https://api.github.com/repos/danigb/elm-twelve-tone/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/danigb/elm-twelve-tone/downloads", + "issues_url": "https://api.github.com/repos/danigb/elm-twelve-tone/issues{/number}", + "pulls_url": "https://api.github.com/repos/danigb/elm-twelve-tone/pulls{/number}", + "milestones_url": "https://api.github.com/repos/danigb/elm-twelve-tone/milestones{/number}", + "notifications_url": "https://api.github.com/repos/danigb/elm-twelve-tone/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/danigb/elm-twelve-tone/labels{/name}", + "releases_url": "https://api.github.com/repos/danigb/elm-twelve-tone/releases{/id}", + "deployments_url": "https://api.github.com/repos/danigb/elm-twelve-tone/deployments", + "created_at": "2016-05-25T07:32:10Z", + "updated_at": "2016-05-25T17:04:48Z", + "pushed_at": "2016-05-25T08:43:47Z", + "git_url": "git://github.com/danigb/elm-twelve-tone.git", + "ssh_url": "git@github.com:danigb/elm-twelve-tone.git", + "clone_url": "https://github.com/danigb/elm-twelve-tone.git", + "svn_url": "https://github.com/danigb/elm-twelve-tone", + "homepage": "", + "size": 225, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 0.9440321 + }, + { + "id": 55661914, + "name": "game-of-life-elm-sonnym", + "full_name": "intrepion/game-of-life-elm-sonnym", + "owner": { + "login": "intrepion", + "id": 1489553, + "avatar_url": "https://avatars.githubusercontent.com/u/1489553?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/intrepion", + "html_url": "https://github.com/intrepion", + "followers_url": "https://api.github.com/users/intrepion/followers", + "following_url": "https://api.github.com/users/intrepion/following{/other_user}", + "gists_url": "https://api.github.com/users/intrepion/gists{/gist_id}", + "starred_url": "https://api.github.com/users/intrepion/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/intrepion/subscriptions", + "organizations_url": "https://api.github.com/users/intrepion/orgs", + "repos_url": "https://api.github.com/users/intrepion/repos", + "events_url": "https://api.github.com/users/intrepion/events{/privacy}", + "received_events_url": "https://api.github.com/users/intrepion/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/intrepion/game-of-life-elm-sonnym", + "description": "Following the tutorial at http://sonnym.github.io/2014/05/05/writing-game-of-life-in-elm/", + "fork": false, + "url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym", + "forks_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/forks", + "keys_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/teams", + "hooks_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/hooks", + "issue_events_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/issues/events{/number}", + "events_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/events", + "assignees_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/assignees{/user}", + "branches_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/branches{/branch}", + "tags_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/tags", + "blobs_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/statuses/{sha}", + "languages_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/languages", + "stargazers_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/stargazers", + "contributors_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/contributors", + "subscribers_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/subscribers", + "subscription_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/subscription", + "commits_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/contents/{+path}", + "compare_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/merges", + "archive_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/downloads", + "issues_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/issues{/number}", + "pulls_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/pulls{/number}", + "milestones_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/milestones{/number}", + "notifications_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/labels{/name}", + "releases_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/releases{/id}", + "deployments_url": "https://api.github.com/repos/intrepion/game-of-life-elm-sonnym/deployments", + "created_at": "2016-04-07T03:50:12Z", + "updated_at": "2016-04-10T20:15:02Z", + "pushed_at": "2016-04-08T01:21:47Z", + "git_url": "git://github.com/intrepion/game-of-life-elm-sonnym.git", + "ssh_url": "git@github.com:intrepion/game-of-life-elm-sonnym.git", + "clone_url": "https://github.com/intrepion/game-of-life-elm-sonnym.git", + "svn_url": "https://github.com/intrepion/game-of-life-elm-sonnym", + "homepage": null, + "size": 3, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master", + "score": 0.828952 + }, + { + "id": 53341814, + "name": "o2-tutorial", + "full_name": "alisw/o2-tutorial", + "owner": { + "login": "alisw", + "id": 12711103, + "avatar_url": "https://avatars.githubusercontent.com/u/12711103?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/alisw", + "html_url": "https://github.com/alisw", + "followers_url": "https://api.github.com/users/alisw/followers", + "following_url": "https://api.github.com/users/alisw/following{/other_user}", + "gists_url": "https://api.github.com/users/alisw/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alisw/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alisw/subscriptions", + "organizations_url": "https://api.github.com/users/alisw/orgs", + "repos_url": "https://api.github.com/users/alisw/repos", + "events_url": "https://api.github.com/users/alisw/events{/privacy}", + "received_events_url": "https://api.github.com/users/alisw/received_events", + "type": "Organization", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/alisw/o2-tutorial", + "description": "An O2 primer", + "fork": false, + "url": "https://api.github.com/repos/alisw/o2-tutorial", + "forks_url": "https://api.github.com/repos/alisw/o2-tutorial/forks", + "keys_url": "https://api.github.com/repos/alisw/o2-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/alisw/o2-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/alisw/o2-tutorial/teams", + "hooks_url": "https://api.github.com/repos/alisw/o2-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/alisw/o2-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/alisw/o2-tutorial/events", + "assignees_url": "https://api.github.com/repos/alisw/o2-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/alisw/o2-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/alisw/o2-tutorial/tags", + "blobs_url": "https://api.github.com/repos/alisw/o2-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/alisw/o2-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/alisw/o2-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/alisw/o2-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/alisw/o2-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/alisw/o2-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/alisw/o2-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/alisw/o2-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/alisw/o2-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/alisw/o2-tutorial/subscription", + "commits_url": "https://api.github.com/repos/alisw/o2-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/alisw/o2-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/alisw/o2-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/alisw/o2-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/alisw/o2-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/alisw/o2-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/alisw/o2-tutorial/merges", + "archive_url": "https://api.github.com/repos/alisw/o2-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/alisw/o2-tutorial/downloads", + "issues_url": "https://api.github.com/repos/alisw/o2-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/alisw/o2-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/alisw/o2-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/alisw/o2-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/alisw/o2-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/alisw/o2-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/alisw/o2-tutorial/deployments", + "created_at": "2016-03-07T16:47:03Z", + "updated_at": "2016-04-05T18:34:39Z", + "pushed_at": "2016-05-17T09:37:48Z", + "git_url": "git://github.com/alisw/o2-tutorial.git", + "ssh_url": "git@github.com:alisw/o2-tutorial.git", + "clone_url": "https://github.com/alisw/o2-tutorial.git", + "svn_url": "https://github.com/alisw/o2-tutorial", + "homepage": null, + "size": 173, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 2, + "mirror_url": null, + "open_issues_count": 0, + "forks": 2, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "score": 4.0608563 + }, + { + "id": 53164428, + "name": "elm-tutorial", + "full_name": "leshow/elm-tutorial", + "owner": { + "login": "leshow", + "id": 1128302, + "avatar_url": "https://avatars.githubusercontent.com/u/1128302?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/leshow", + "html_url": "https://github.com/leshow", + "followers_url": "https://api.github.com/users/leshow/followers", + "following_url": "https://api.github.com/users/leshow/following{/other_user}", + "gists_url": "https://api.github.com/users/leshow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/leshow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/leshow/subscriptions", + "organizations_url": "https://api.github.com/users/leshow/orgs", + "repos_url": "https://api.github.com/users/leshow/repos", + "events_url": "https://api.github.com/users/leshow/events{/privacy}", + "received_events_url": "https://api.github.com/users/leshow/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/leshow/elm-tutorial", + "description": "following exercises in elm-tutorial.org", + "fork": false, + "url": "https://api.github.com/repos/leshow/elm-tutorial", + "forks_url": "https://api.github.com/repos/leshow/elm-tutorial/forks", + "keys_url": "https://api.github.com/repos/leshow/elm-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/leshow/elm-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/leshow/elm-tutorial/teams", + "hooks_url": "https://api.github.com/repos/leshow/elm-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/leshow/elm-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/leshow/elm-tutorial/events", + "assignees_url": "https://api.github.com/repos/leshow/elm-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/leshow/elm-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/leshow/elm-tutorial/tags", + "blobs_url": "https://api.github.com/repos/leshow/elm-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/leshow/elm-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/leshow/elm-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/leshow/elm-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/leshow/elm-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/leshow/elm-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/leshow/elm-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/leshow/elm-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/leshow/elm-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/leshow/elm-tutorial/subscription", + "commits_url": "https://api.github.com/repos/leshow/elm-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/leshow/elm-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/leshow/elm-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/leshow/elm-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/leshow/elm-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/leshow/elm-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/leshow/elm-tutorial/merges", + "archive_url": "https://api.github.com/repos/leshow/elm-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/leshow/elm-tutorial/downloads", + "issues_url": "https://api.github.com/repos/leshow/elm-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/leshow/elm-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/leshow/elm-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/leshow/elm-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/leshow/elm-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/leshow/elm-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/leshow/elm-tutorial/deployments", + "created_at": "2016-03-04T20:46:36Z", + "updated_at": "2016-03-04T20:46:54Z", + "pushed_at": "2016-03-13T04:34:58Z", + "git_url": "git://github.com/leshow/elm-tutorial.git", + "ssh_url": "git@github.com:leshow/elm-tutorial.git", + "clone_url": "https://github.com/leshow/elm-tutorial.git", + "svn_url": "https://github.com/leshow/elm-tutorial", + "homepage": null, + "size": 25, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "score": 2.9006119 + }, + { + "id": 55372649, + "name": "elm-tutorial", + "full_name": "atungare/elm-tutorial", + "owner": { + "login": "atungare", + "id": 4317142, + "avatar_url": "https://avatars.githubusercontent.com/u/4317142?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/atungare", + "html_url": "https://github.com/atungare", + "followers_url": "https://api.github.com/users/atungare/followers", + "following_url": "https://api.github.com/users/atungare/following{/other_user}", + "gists_url": "https://api.github.com/users/atungare/gists{/gist_id}", + "starred_url": "https://api.github.com/users/atungare/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/atungare/subscriptions", + "organizations_url": "https://api.github.com/users/atungare/orgs", + "repos_url": "https://api.github.com/users/atungare/repos", + "events_url": "https://api.github.com/users/atungare/events{/privacy}", + "received_events_url": "https://api.github.com/users/atungare/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/atungare/elm-tutorial", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/atungare/elm-tutorial", + "forks_url": "https://api.github.com/repos/atungare/elm-tutorial/forks", + "keys_url": "https://api.github.com/repos/atungare/elm-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/atungare/elm-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/atungare/elm-tutorial/teams", + "hooks_url": "https://api.github.com/repos/atungare/elm-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/atungare/elm-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/atungare/elm-tutorial/events", + "assignees_url": "https://api.github.com/repos/atungare/elm-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/atungare/elm-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/atungare/elm-tutorial/tags", + "blobs_url": "https://api.github.com/repos/atungare/elm-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/atungare/elm-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/atungare/elm-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/atungare/elm-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/atungare/elm-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/atungare/elm-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/atungare/elm-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/atungare/elm-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/atungare/elm-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/atungare/elm-tutorial/subscription", + "commits_url": "https://api.github.com/repos/atungare/elm-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/atungare/elm-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/atungare/elm-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/atungare/elm-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/atungare/elm-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/atungare/elm-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/atungare/elm-tutorial/merges", + "archive_url": "https://api.github.com/repos/atungare/elm-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/atungare/elm-tutorial/downloads", + "issues_url": "https://api.github.com/repos/atungare/elm-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/atungare/elm-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/atungare/elm-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/atungare/elm-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/atungare/elm-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/atungare/elm-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/atungare/elm-tutorial/deployments", + "created_at": "2016-04-03T22:40:08Z", + "updated_at": "2016-04-03T23:16:51Z", + "pushed_at": "2016-04-04T05:02:22Z", + "git_url": "git://github.com/atungare/elm-tutorial.git", + "ssh_url": "git@github.com:atungare/elm-tutorial.git", + "clone_url": "https://github.com/atungare/elm-tutorial.git", + "svn_url": "https://github.com/atungare/elm-tutorial", + "homepage": null, + "size": 64, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "score": 2.9006119 + }, + { + "id": 62127159, + "name": "elm-tutorial", + "full_name": "AlexKVal/elm-tutorial", + "owner": { + "login": "AlexKVal", + "id": 847572, + "avatar_url": "https://avatars.githubusercontent.com/u/847572?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/AlexKVal", + "html_url": "https://github.com/AlexKVal", + "followers_url": "https://api.github.com/users/AlexKVal/followers", + "following_url": "https://api.github.com/users/AlexKVal/following{/other_user}", + "gists_url": "https://api.github.com/users/AlexKVal/gists{/gist_id}", + "starred_url": "https://api.github.com/users/AlexKVal/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/AlexKVal/subscriptions", + "organizations_url": "https://api.github.com/users/AlexKVal/orgs", + "repos_url": "https://api.github.com/users/AlexKVal/repos", + "events_url": "https://api.github.com/users/AlexKVal/events{/privacy}", + "received_events_url": "https://api.github.com/users/AlexKVal/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/AlexKVal/elm-tutorial", + "description": null, + "fork": false, + "url": "https://api.github.com/repos/AlexKVal/elm-tutorial", + "forks_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/forks", + "keys_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/teams", + "hooks_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/events", + "assignees_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/tags", + "blobs_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/subscription", + "commits_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/merges", + "archive_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/downloads", + "issues_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/AlexKVal/elm-tutorial/deployments", + "created_at": "2016-06-28T09:15:00Z", + "updated_at": "2016-06-28T15:05:27Z", + "pushed_at": "2016-06-30T17:46:28Z", + "git_url": "git://github.com/AlexKVal/elm-tutorial.git", + "ssh_url": "git@github.com:AlexKVal/elm-tutorial.git", + "clone_url": "https://github.com/AlexKVal/elm-tutorial.git", + "svn_url": "https://github.com/AlexKVal/elm-tutorial", + "homepage": null, + "size": 18, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "score": 2.9006119 + }, + { + "id": 55903833, + "name": "elm-tutorial", + "full_name": "nnance/elm-tutorial", + "owner": { + "login": "nnance", + "id": 1028572, + "avatar_url": "https://avatars.githubusercontent.com/u/1028572?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/nnance", + "html_url": "https://github.com/nnance", + "followers_url": "https://api.github.com/users/nnance/followers", + "following_url": "https://api.github.com/users/nnance/following{/other_user}", + "gists_url": "https://api.github.com/users/nnance/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nnance/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nnance/subscriptions", + "organizations_url": "https://api.github.com/users/nnance/orgs", + "repos_url": "https://api.github.com/users/nnance/repos", + "events_url": "https://api.github.com/users/nnance/events{/privacy}", + "received_events_url": "https://api.github.com/users/nnance/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/nnance/elm-tutorial", + "description": "", + "fork": false, + "url": "https://api.github.com/repos/nnance/elm-tutorial", + "forks_url": "https://api.github.com/repos/nnance/elm-tutorial/forks", + "keys_url": "https://api.github.com/repos/nnance/elm-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nnance/elm-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nnance/elm-tutorial/teams", + "hooks_url": "https://api.github.com/repos/nnance/elm-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/nnance/elm-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/nnance/elm-tutorial/events", + "assignees_url": "https://api.github.com/repos/nnance/elm-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/nnance/elm-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/nnance/elm-tutorial/tags", + "blobs_url": "https://api.github.com/repos/nnance/elm-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nnance/elm-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nnance/elm-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nnance/elm-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nnance/elm-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nnance/elm-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/nnance/elm-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/nnance/elm-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/nnance/elm-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/nnance/elm-tutorial/subscription", + "commits_url": "https://api.github.com/repos/nnance/elm-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nnance/elm-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nnance/elm-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nnance/elm-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/nnance/elm-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/nnance/elm-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nnance/elm-tutorial/merges", + "archive_url": "https://api.github.com/repos/nnance/elm-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nnance/elm-tutorial/downloads", + "issues_url": "https://api.github.com/repos/nnance/elm-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/nnance/elm-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nnance/elm-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nnance/elm-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nnance/elm-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/nnance/elm-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/nnance/elm-tutorial/deployments", + "created_at": "2016-04-10T14:32:35Z", + "updated_at": "2016-04-10T14:54:11Z", + "pushed_at": "2016-04-10T14:54:10Z", + "git_url": "git://github.com/nnance/elm-tutorial.git", + "ssh_url": "git@github.com:nnance/elm-tutorial.git", + "clone_url": "https://github.com/nnance/elm-tutorial.git", + "svn_url": "https://github.com/nnance/elm-tutorial", + "homepage": null, + "size": 5, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "score": 2.8971891 + }, + { + "id": 54762301, + "name": "elm-tutorial", + "full_name": "bberak/elm-tutorial", + "owner": { + "login": "bberak", + "id": 1929971, + "avatar_url": "https://avatars.githubusercontent.com/u/1929971?v=3", + "gravatar_id": "", + "url": "https://api.github.com/users/bberak", + "html_url": "https://github.com/bberak", + "followers_url": "https://api.github.com/users/bberak/followers", + "following_url": "https://api.github.com/users/bberak/following{/other_user}", + "gists_url": "https://api.github.com/users/bberak/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bberak/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bberak/subscriptions", + "organizations_url": "https://api.github.com/users/bberak/orgs", + "repos_url": "https://api.github.com/users/bberak/repos", + "events_url": "https://api.github.com/users/bberak/events{/privacy}", + "received_events_url": "https://api.github.com/users/bberak/received_events", + "type": "User", + "site_admin": false + }, + "private": false, + "html_url": "https://github.com/bberak/elm-tutorial", + "description": "Repo for storing my code for the elm-architecture-tutorial", + "fork": false, + "url": "https://api.github.com/repos/bberak/elm-tutorial", + "forks_url": "https://api.github.com/repos/bberak/elm-tutorial/forks", + "keys_url": "https://api.github.com/repos/bberak/elm-tutorial/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/bberak/elm-tutorial/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/bberak/elm-tutorial/teams", + "hooks_url": "https://api.github.com/repos/bberak/elm-tutorial/hooks", + "issue_events_url": "https://api.github.com/repos/bberak/elm-tutorial/issues/events{/number}", + "events_url": "https://api.github.com/repos/bberak/elm-tutorial/events", + "assignees_url": "https://api.github.com/repos/bberak/elm-tutorial/assignees{/user}", + "branches_url": "https://api.github.com/repos/bberak/elm-tutorial/branches{/branch}", + "tags_url": "https://api.github.com/repos/bberak/elm-tutorial/tags", + "blobs_url": "https://api.github.com/repos/bberak/elm-tutorial/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/bberak/elm-tutorial/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/bberak/elm-tutorial/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/bberak/elm-tutorial/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/bberak/elm-tutorial/statuses/{sha}", + "languages_url": "https://api.github.com/repos/bberak/elm-tutorial/languages", + "stargazers_url": "https://api.github.com/repos/bberak/elm-tutorial/stargazers", + "contributors_url": "https://api.github.com/repos/bberak/elm-tutorial/contributors", + "subscribers_url": "https://api.github.com/repos/bberak/elm-tutorial/subscribers", + "subscription_url": "https://api.github.com/repos/bberak/elm-tutorial/subscription", + "commits_url": "https://api.github.com/repos/bberak/elm-tutorial/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/bberak/elm-tutorial/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/bberak/elm-tutorial/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/bberak/elm-tutorial/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/bberak/elm-tutorial/contents/{+path}", + "compare_url": "https://api.github.com/repos/bberak/elm-tutorial/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/bberak/elm-tutorial/merges", + "archive_url": "https://api.github.com/repos/bberak/elm-tutorial/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/bberak/elm-tutorial/downloads", + "issues_url": "https://api.github.com/repos/bberak/elm-tutorial/issues{/number}", + "pulls_url": "https://api.github.com/repos/bberak/elm-tutorial/pulls{/number}", + "milestones_url": "https://api.github.com/repos/bberak/elm-tutorial/milestones{/number}", + "notifications_url": "https://api.github.com/repos/bberak/elm-tutorial/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/bberak/elm-tutorial/labels{/name}", + "releases_url": "https://api.github.com/repos/bberak/elm-tutorial/releases{/id}", + "deployments_url": "https://api.github.com/repos/bberak/elm-tutorial/deployments", + "created_at": "2016-03-26T04:20:01Z", + "updated_at": "2016-03-26T05:43:39Z", + "pushed_at": "2016-04-10T06:43:32Z", + "git_url": "git://github.com/bberak/elm-tutorial.git", + "ssh_url": "git@github.com:bberak/elm-tutorial.git", + "clone_url": "https://github.com/bberak/elm-tutorial.git", + "svn_url": "https://github.com/bberak/elm-tutorial", + "homepage": null, + "size": 9, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Elm", + "has_issues": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "open_issues_count": 0, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "score": 2.8971891 + } + ] + } + """