Skip to content

michaelruocco/fake-github

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fake Github

Build Status Coverage Status Maven Central Codacy Badge

This project creates a fake implementation of a small portion of the github user api. It returns canned responses for the user "hackeryou", you are currently able to get the user details, a list of repos for the user, and a list of languages for each repo.

The full documentation for the api can be found here specific user documentation can also be found here.

Currently the following endpoints are faked:

The faked response payloads are listed at the bottom of the document (as some are quite lengthy!)

Usage

The library can be run as a standalone mock, or used as a library in your tests. To run the mock standalone you can run the following command from the command line.

java -jar fake-github-standalone.jar

You can also change the port the mock is running on, and override the host url that is used when the mock returns urls that point to other mocked resources using the following command line arguments

java -jar fake-github-standalone.jar -p 8099 -u http://anotherHost:8099

This means if you want to deploy your mock onto a host other than the one where your test code is running the references returned by the mock will still point correctly at your mock instance.

To use the library from a program you will need to add a dependency to your project. In gradle you would do this by adding the following to your build.gradle file:

dependencies {
    testCompile 'com.github.michaelruocco:fake-github:2.0.0'
}

You can then create and instance of the FakeGithub class that can be started and stopped by doing the following:

FakeGithub github = new FakeGithubBuilder().build();
github.start();

// do some stuff

github.stop();

Again you can override the port and response host url if required:

FakeGithub github = new FakeGithubBuilder()
    .setPort(8099)
    .setResponseHostUrl("http://anotherHost:8099")
    .build();

The FakeGithub class also implements AutoClosable so you can use a try with resources block too if required, or if you don't want to have to call stop explicitly:

try (FakeGithub github = new FakeGithubBuilder().build()) {
    // do some stuff
}

Finally a FakeGithubRule has also been implemented so you can use this in your tests without having to set up @Before setUp and @After tearDown. The tests in this project are an example of this in action. To do this you can do the following:

    public final FakeGithubRule githubRule = new FakeGithubRuleBuilder().build();
    
    @Test
    public void test1() {
        // test 1 using mock
    }
    
    @Test
    public void test2() {
        // test 2 using mock
    }

It is also possible to override the default port and response host url when using the FakeGitHubRuleBuilder in the same way as when using the FakeGithubBuilder as is shown above.

Running the Tests

You can run the tests for this project by running the following command:

gradlew clean build

Checking dependencies

You can check the current dependencies used by the project to see whether or not they are currently up to date by running the following command:

gradlew dependencyUpdates

Response payload details

Get User

GET http://localhost:8099/users/hackeryou

Will return:

{
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false,
name: "HackerYou",
company: null,
blog: "http://www.hackeryou.com",
location: "Toronto",
email: "info@hackeryou.com",
hireable: null,
bio: null,
public_repos: 35,
public_gists: 0,
followers: 0,
following: 0,
created_at: "2012-10-03T14:38:34Z",
updated_at: "2016-07-24T09:40:21Z"
}

Get User Repos

GET http://localhost:8099/users/HackerYou/repos

[
{
id: 18654790,
name: "amazon",
full_name: "HackerYou/amazon",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/amazon",
description: "",
fork: false,
url: "https://api.github.com/repos/HackerYou/amazon",
forks_url: "https://api.github.com/repos/HackerYou/amazon/forks",
keys_url: "https://api.github.com/repos/HackerYou/amazon/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/amazon/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/amazon/teams",
hooks_url: "https://api.github.com/repos/HackerYou/amazon/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/amazon/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/amazon/events",
assignees_url: "https://api.github.com/repos/HackerYou/amazon/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/amazon/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/amazon/tags",
blobs_url: "https://api.github.com/repos/HackerYou/amazon/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/amazon/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/amazon/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/amazon/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/amazon/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/amazon/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/amazon/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/amazon/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/amazon/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/amazon/subscription",
commits_url: "https://api.github.com/repos/HackerYou/amazon/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/amazon/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/amazon/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/amazon/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/amazon/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/amazon/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/amazon/merges",
archive_url: "https://api.github.com/repos/HackerYou/amazon/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/amazon/downloads",
issues_url: "https://api.github.com/repos/HackerYou/amazon/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/amazon/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/amazon/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/amazon/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/amazon/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/amazon/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/amazon/deployments",
created_at: "2014-04-10T23:00:28Z",
updated_at: "2014-05-15T23:51:48Z",
pushed_at: "2014-05-15T23:51:48Z",
git_url: "git://github.com/HackerYou/amazon.git",
ssh_url: "git@github.com:HackerYou/amazon.git",
clone_url: "https://github.com/HackerYou/amazon.git",
svn_url: "https://github.com/HackerYou/amazon",
homepage: null,
size: 169,
stargazers_count: 0,
watchers_count: 0,
language: "Ruby",
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: 0,
default_branch: "master"
},
{
id: 30418271,
name: "assigner",
full_name: "HackerYou/assigner",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/assigner",
description: "A JavaScript based Teacher / Project assigner built on ES6, Gulp, Mustache and Jade",
fork: false,
url: "https://api.github.com/repos/HackerYou/assigner",
forks_url: "https://api.github.com/repos/HackerYou/assigner/forks",
keys_url: "https://api.github.com/repos/HackerYou/assigner/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/assigner/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/assigner/teams",
hooks_url: "https://api.github.com/repos/HackerYou/assigner/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/assigner/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/assigner/events",
assignees_url: "https://api.github.com/repos/HackerYou/assigner/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/assigner/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/assigner/tags",
blobs_url: "https://api.github.com/repos/HackerYou/assigner/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/assigner/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/assigner/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/assigner/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/assigner/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/assigner/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/assigner/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/assigner/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/assigner/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/assigner/subscription",
commits_url: "https://api.github.com/repos/HackerYou/assigner/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/assigner/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/assigner/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/assigner/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/assigner/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/assigner/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/assigner/merges",
archive_url: "https://api.github.com/repos/HackerYou/assigner/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/assigner/downloads",
issues_url: "https://api.github.com/repos/HackerYou/assigner/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/assigner/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/assigner/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/assigner/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/assigner/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/assigner/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/assigner/deployments",
created_at: "2015-02-06T15:19:28Z",
updated_at: "2016-07-18T17:57:33Z",
pushed_at: "2016-07-18T17:57:32Z",
git_url: "git://github.com/HackerYou/assigner.git",
ssh_url: "git@github.com:HackerYou/assigner.git",
clone_url: "https://github.com/HackerYou/assigner.git",
svn_url: "https://github.com/HackerYou/assigner",
homepage: null,
size: 34,
stargazers_count: 0,
watchers_count: 0,
language: "JavaScript",
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"
},
{
id: 34483921,
name: "bottles_of_beer",
full_name: "HackerYou/bottles_of_beer",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/bottles_of_beer",
description: "",
fork: false,
url: "https://api.github.com/repos/HackerYou/bottles_of_beer",
forks_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/forks",
keys_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/teams",
hooks_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/events",
assignees_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/tags",
blobs_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/subscription",
commits_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/merges",
archive_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/downloads",
issues_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/bottles_of_beer/deployments",
created_at: "2015-04-23T22:04:28Z",
updated_at: "2015-05-26T18:06:17Z",
pushed_at: "2015-04-24T00:48:21Z",
git_url: "git://github.com/HackerYou/bottles_of_beer.git",
ssh_url: "git@github.com:HackerYou/bottles_of_beer.git",
clone_url: "https://github.com/HackerYou/bottles_of_beer.git",
svn_url: "https://github.com/HackerYou/bottles_of_beer",
homepage: null,
size: 132,
stargazers_count: 0,
watchers_count: 0,
language: "Ruby",
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"
},
{
id: 17231811,
name: "broken-sinatra",
full_name: "HackerYou/broken-sinatra",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/broken-sinatra",
description: "A purposefully broken Sinatra app to aid in debugging errors",
fork: false,
url: "https://api.github.com/repos/HackerYou/broken-sinatra",
forks_url: "https://api.github.com/repos/HackerYou/broken-sinatra/forks",
keys_url: "https://api.github.com/repos/HackerYou/broken-sinatra/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/broken-sinatra/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/broken-sinatra/teams",
hooks_url: "https://api.github.com/repos/HackerYou/broken-sinatra/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/broken-sinatra/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/broken-sinatra/events",
assignees_url: "https://api.github.com/repos/HackerYou/broken-sinatra/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/broken-sinatra/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/broken-sinatra/tags",
blobs_url: "https://api.github.com/repos/HackerYou/broken-sinatra/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/broken-sinatra/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/broken-sinatra/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/broken-sinatra/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/broken-sinatra/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/broken-sinatra/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/broken-sinatra/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/broken-sinatra/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/broken-sinatra/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/broken-sinatra/subscription",
commits_url: "https://api.github.com/repos/HackerYou/broken-sinatra/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/broken-sinatra/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/broken-sinatra/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/broken-sinatra/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/broken-sinatra/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/broken-sinatra/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/broken-sinatra/merges",
archive_url: "https://api.github.com/repos/HackerYou/broken-sinatra/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/broken-sinatra/downloads",
issues_url: "https://api.github.com/repos/HackerYou/broken-sinatra/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/broken-sinatra/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/broken-sinatra/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/broken-sinatra/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/broken-sinatra/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/broken-sinatra/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/broken-sinatra/deployments",
created_at: "2014-02-27T01:04:58Z",
updated_at: "2015-02-07T17:59:49Z",
pushed_at: "2016-01-26T01:03:34Z",
git_url: "git://github.com/HackerYou/broken-sinatra.git",
ssh_url: "git@github.com:HackerYou/broken-sinatra.git",
clone_url: "https://github.com/HackerYou/broken-sinatra.git",
svn_url: "https://github.com/HackerYou/broken-sinatra",
homepage: null,
size: 201,
stargazers_count: 1,
watchers_count: 1,
language: "Ruby",
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: false,
forks_count: 3,
mirror_url: null,
open_issues_count: 2,
forks: 3,
open_issues: 2,
watchers: 1,
default_branch: "master"
},
{
id: 45567779,
name: "chalk",
full_name: "HackerYou/chalk",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/chalk",
description: "",
fork: false,
url: "https://api.github.com/repos/HackerYou/chalk",
forks_url: "https://api.github.com/repos/HackerYou/chalk/forks",
keys_url: "https://api.github.com/repos/HackerYou/chalk/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/chalk/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/chalk/teams",
hooks_url: "https://api.github.com/repos/HackerYou/chalk/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/chalk/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/chalk/events",
assignees_url: "https://api.github.com/repos/HackerYou/chalk/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/chalk/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/chalk/tags",
blobs_url: "https://api.github.com/repos/HackerYou/chalk/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/chalk/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/chalk/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/chalk/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/chalk/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/chalk/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/chalk/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/chalk/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/chalk/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/chalk/subscription",
commits_url: "https://api.github.com/repos/HackerYou/chalk/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/chalk/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/chalk/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/chalk/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/chalk/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/chalk/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/chalk/merges",
archive_url: "https://api.github.com/repos/HackerYou/chalk/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/chalk/downloads",
issues_url: "https://api.github.com/repos/HackerYou/chalk/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/chalk/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/chalk/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/chalk/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/chalk/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/chalk/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/chalk/deployments",
created_at: "2015-11-04T21:12:42Z",
updated_at: "2016-03-28T23:57:53Z",
pushed_at: "2016-07-21T00:29:16Z",
git_url: "git://github.com/HackerYou/chalk.git",
ssh_url: "git@github.com:HackerYou/chalk.git",
clone_url: "https://github.com/HackerYou/chalk.git",
svn_url: "https://github.com/HackerYou/chalk",
homepage: null,
size: 3635,
stargazers_count: 3,
watchers_count: 3,
language: "JavaScript",
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: false,
forks_count: 5,
mirror_url: null,
open_issues_count: 12,
forks: 5,
open_issues: 12,
watchers: 3,
default_branch: "master"
},
{
id: 45060703,
name: "chalk-api",
full_name: "HackerYou/chalk-api",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/chalk-api",
description: "",
fork: false,
url: "https://api.github.com/repos/HackerYou/chalk-api",
forks_url: "https://api.github.com/repos/HackerYou/chalk-api/forks",
keys_url: "https://api.github.com/repos/HackerYou/chalk-api/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/chalk-api/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/chalk-api/teams",
hooks_url: "https://api.github.com/repos/HackerYou/chalk-api/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/chalk-api/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/chalk-api/events",
assignees_url: "https://api.github.com/repos/HackerYou/chalk-api/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/chalk-api/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/chalk-api/tags",
blobs_url: "https://api.github.com/repos/HackerYou/chalk-api/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/chalk-api/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/chalk-api/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/chalk-api/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/chalk-api/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/chalk-api/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/chalk-api/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/chalk-api/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/chalk-api/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/chalk-api/subscription",
commits_url: "https://api.github.com/repos/HackerYou/chalk-api/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/chalk-api/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/chalk-api/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/chalk-api/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/chalk-api/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/chalk-api/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/chalk-api/merges",
archive_url: "https://api.github.com/repos/HackerYou/chalk-api/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/chalk-api/downloads",
issues_url: "https://api.github.com/repos/HackerYou/chalk-api/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/chalk-api/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/chalk-api/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/chalk-api/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/chalk-api/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/chalk-api/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/chalk-api/deployments",
created_at: "2015-10-27T18:15:23Z",
updated_at: "2016-06-01T04:32:06Z",
pushed_at: "2016-06-28T20:01:49Z",
git_url: "git://github.com/HackerYou/chalk-api.git",
ssh_url: "git@github.com:HackerYou/chalk-api.git",
clone_url: "https://github.com/HackerYou/chalk-api.git",
svn_url: "https://github.com/HackerYou/chalk-api",
homepage: null,
size: 132,
stargazers_count: 2,
watchers_count: 2,
language: "JavaScript",
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: false,
forks_count: 3,
mirror_url: null,
open_issues_count: 1,
forks: 3,
open_issues: 1,
watchers: 2,
default_branch: "master"
},
{
id: 18882238,
name: "class_schedule",
full_name: "HackerYou/class_schedule",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/class_schedule",
description: "",
fork: false,
url: "https://api.github.com/repos/HackerYou/class_schedule",
forks_url: "https://api.github.com/repos/HackerYou/class_schedule/forks",
keys_url: "https://api.github.com/repos/HackerYou/class_schedule/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/class_schedule/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/class_schedule/teams",
hooks_url: "https://api.github.com/repos/HackerYou/class_schedule/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/class_schedule/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/class_schedule/events",
assignees_url: "https://api.github.com/repos/HackerYou/class_schedule/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/class_schedule/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/class_schedule/tags",
blobs_url: "https://api.github.com/repos/HackerYou/class_schedule/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/class_schedule/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/class_schedule/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/class_schedule/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/class_schedule/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/class_schedule/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/class_schedule/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/class_schedule/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/class_schedule/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/class_schedule/subscription",
commits_url: "https://api.github.com/repos/HackerYou/class_schedule/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/class_schedule/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/class_schedule/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/class_schedule/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/class_schedule/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/class_schedule/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/class_schedule/merges",
archive_url: "https://api.github.com/repos/HackerYou/class_schedule/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/class_schedule/downloads",
issues_url: "https://api.github.com/repos/HackerYou/class_schedule/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/class_schedule/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/class_schedule/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/class_schedule/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/class_schedule/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/class_schedule/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/class_schedule/deployments",
created_at: "2014-04-17T14:57:28Z",
updated_at: "2015-03-26T22:08:50Z",
pushed_at: "2015-03-26T22:08:50Z",
git_url: "git://github.com/HackerYou/class_schedule.git",
ssh_url: "git@github.com:HackerYou/class_schedule.git",
clone_url: "https://github.com/HackerYou/class_schedule.git",
svn_url: "https://github.com/HackerYou/class_schedule",
homepage: null,
size: 144,
stargazers_count: 0,
watchers_count: 0,
language: "Ruby",
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: false,
forks_count: 3,
mirror_url: null,
open_issues_count: 0,
forks: 3,
open_issues: 0,
watchers: 0,
default_branch: "master"
},
{
id: 11204901,
name: "fake_rails_sinatra",
full_name: "HackerYou/fake_rails_sinatra",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/fake_rails_sinatra",
description: "An example reimplementation of Rails' controllers and routing in Sinatra.",
fork: false,
url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra",
forks_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/forks",
keys_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/teams",
hooks_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/events",
assignees_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/tags",
blobs_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/subscription",
commits_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/merges",
archive_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/downloads",
issues_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/fake_rails_sinatra/deployments",
created_at: "2013-07-05T17:35:05Z",
updated_at: "2013-10-22T09:10:00Z",
pushed_at: "2013-07-05T17:47:21Z",
git_url: "git://github.com/HackerYou/fake_rails_sinatra.git",
ssh_url: "git@github.com:HackerYou/fake_rails_sinatra.git",
clone_url: "https://github.com/HackerYou/fake_rails_sinatra.git",
svn_url: "https://github.com/HackerYou/fake_rails_sinatra",
homepage: null,
size: 105,
stargazers_count: 0,
watchers_count: 0,
language: "Ruby",
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: 0,
default_branch: "master"
},
{
id: 52631543,
name: "freelancing",
full_name: "HackerYou/freelancing",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/freelancing",
description: "Resources for the full-time freelancers in the HackerYou community.",
fork: false,
url: "https://api.github.com/repos/HackerYou/freelancing",
forks_url: "https://api.github.com/repos/HackerYou/freelancing/forks",
keys_url: "https://api.github.com/repos/HackerYou/freelancing/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/freelancing/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/freelancing/teams",
hooks_url: "https://api.github.com/repos/HackerYou/freelancing/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/freelancing/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/freelancing/events",
assignees_url: "https://api.github.com/repos/HackerYou/freelancing/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/freelancing/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/freelancing/tags",
blobs_url: "https://api.github.com/repos/HackerYou/freelancing/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/freelancing/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/freelancing/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/freelancing/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/freelancing/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/freelancing/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/freelancing/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/freelancing/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/freelancing/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/freelancing/subscription",
commits_url: "https://api.github.com/repos/HackerYou/freelancing/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/freelancing/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/freelancing/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/freelancing/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/freelancing/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/freelancing/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/freelancing/merges",
archive_url: "https://api.github.com/repos/HackerYou/freelancing/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/freelancing/downloads",
issues_url: "https://api.github.com/repos/HackerYou/freelancing/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/freelancing/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/freelancing/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/freelancing/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/freelancing/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/freelancing/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/freelancing/deployments",
created_at: "2016-02-26T20:43:27Z",
updated_at: "2016-06-03T16:19:43Z",
pushed_at: "2016-04-19T20:28:57Z",
git_url: "git://github.com/HackerYou/freelancing.git",
ssh_url: "git@github.com:HackerYou/freelancing.git",
clone_url: "https://github.com/HackerYou/freelancing.git",
svn_url: "https://github.com/HackerYou/freelancing",
homepage: null,
size: 7,
stargazers_count: 4,
watchers_count: 4,
language: null,
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: 4,
default_branch: "master"
},
{
id: 12361839,
name: "good-talk",
full_name: "HackerYou/good-talk",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/good-talk",
description: "good-talk",
fork: false,
url: "https://api.github.com/repos/HackerYou/good-talk",
forks_url: "https://api.github.com/repos/HackerYou/good-talk/forks",
keys_url: "https://api.github.com/repos/HackerYou/good-talk/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/good-talk/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/good-talk/teams",
hooks_url: "https://api.github.com/repos/HackerYou/good-talk/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/good-talk/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/good-talk/events",
assignees_url: "https://api.github.com/repos/HackerYou/good-talk/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/good-talk/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/good-talk/tags",
blobs_url: "https://api.github.com/repos/HackerYou/good-talk/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/good-talk/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/good-talk/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/good-talk/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/good-talk/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/good-talk/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/good-talk/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/good-talk/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/good-talk/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/good-talk/subscription",
commits_url: "https://api.github.com/repos/HackerYou/good-talk/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/good-talk/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/good-talk/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/good-talk/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/good-talk/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/good-talk/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/good-talk/merges",
archive_url: "https://api.github.com/repos/HackerYou/good-talk/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/good-talk/downloads",
issues_url: "https://api.github.com/repos/HackerYou/good-talk/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/good-talk/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/good-talk/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/good-talk/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/good-talk/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/good-talk/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/good-talk/deployments",
created_at: "2013-08-25T16:25:00Z",
updated_at: "2014-01-21T02:41:08Z",
pushed_at: "2013-08-25T19:33:44Z",
git_url: "git://github.com/HackerYou/good-talk.git",
ssh_url: "git@github.com:HackerYou/good-talk.git",
clone_url: "https://github.com/HackerYou/good-talk.git",
svn_url: "https://github.com/HackerYou/good-talk",
homepage: null,
size: 132,
stargazers_count: 0,
watchers_count: 0,
language: "Ruby",
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"
},
{
id: 31747482,
name: "hack-blog",
full_name: "HackerYou/hack-blog",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/hack-blog",
description: "",
fork: false,
url: "https://api.github.com/repos/HackerYou/hack-blog",
forks_url: "https://api.github.com/repos/HackerYou/hack-blog/forks",
keys_url: "https://api.github.com/repos/HackerYou/hack-blog/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/hack-blog/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/hack-blog/teams",
hooks_url: "https://api.github.com/repos/HackerYou/hack-blog/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/hack-blog/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/hack-blog/events",
assignees_url: "https://api.github.com/repos/HackerYou/hack-blog/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/hack-blog/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/hack-blog/tags",
blobs_url: "https://api.github.com/repos/HackerYou/hack-blog/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/hack-blog/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/hack-blog/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/hack-blog/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/hack-blog/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/hack-blog/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/hack-blog/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/hack-blog/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/hack-blog/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/hack-blog/subscription",
commits_url: "https://api.github.com/repos/HackerYou/hack-blog/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/hack-blog/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/hack-blog/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/hack-blog/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/hack-blog/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/hack-blog/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/hack-blog/merges",
archive_url: "https://api.github.com/repos/HackerYou/hack-blog/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/hack-blog/downloads",
issues_url: "https://api.github.com/repos/HackerYou/hack-blog/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/hack-blog/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/hack-blog/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/hack-blog/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/hack-blog/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/hack-blog/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/hack-blog/deployments",
created_at: "2015-03-06T02:02:28Z",
updated_at: "2015-05-26T18:06:34Z",
pushed_at: "2015-04-10T00:52:24Z",
git_url: "git://github.com/HackerYou/hack-blog.git",
ssh_url: "git@github.com:HackerYou/hack-blog.git",
clone_url: "https://github.com/HackerYou/hack-blog.git",
svn_url: "https://github.com/HackerYou/hack-blog",
homepage: null,
size: 276,
stargazers_count: 0,
watchers_count: 0,
language: "Ruby",
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"
},
{
id: 6039190,
name: "hackboard",
full_name: "HackerYou/hackboard",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/hackboard",
description: null,
fork: false,
url: "https://api.github.com/repos/HackerYou/hackboard",
forks_url: "https://api.github.com/repos/HackerYou/hackboard/forks",
keys_url: "https://api.github.com/repos/HackerYou/hackboard/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/hackboard/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/hackboard/teams",
hooks_url: "https://api.github.com/repos/HackerYou/hackboard/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/hackboard/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/hackboard/events",
assignees_url: "https://api.github.com/repos/HackerYou/hackboard/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/hackboard/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/hackboard/tags",
blobs_url: "https://api.github.com/repos/HackerYou/hackboard/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/hackboard/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/hackboard/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/hackboard/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/hackboard/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/hackboard/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/hackboard/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/hackboard/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/hackboard/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/hackboard/subscription",
commits_url: "https://api.github.com/repos/HackerYou/hackboard/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/hackboard/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/hackboard/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/hackboard/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/hackboard/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/hackboard/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/hackboard/merges",
archive_url: "https://api.github.com/repos/HackerYou/hackboard/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/hackboard/downloads",
issues_url: "https://api.github.com/repos/HackerYou/hackboard/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/hackboard/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/hackboard/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/hackboard/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/hackboard/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/hackboard/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/hackboard/deployments",
created_at: "2012-10-02T02:18:26Z",
updated_at: "2014-04-30T17:16:45Z",
pushed_at: "2014-04-30T17:16:43Z",
git_url: "git://github.com/HackerYou/hackboard.git",
ssh_url: "git@github.com:HackerYou/hackboard.git",
clone_url: "https://github.com/HackerYou/hackboard.git",
svn_url: "https://github.com/HackerYou/hackboard",
homepage: null,
size: 349,
stargazers_count: 1,
watchers_count: 1,
language: "Ruby",
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: false,
forks_count: 5,
mirror_url: null,
open_issues_count: 0,
forks: 5,
open_issues: 0,
watchers: 1,
default_branch: "master"
},
{
id: 18491218,
name: "hackbook",
full_name: "HackerYou/hackbook",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/hackbook",
description: "Rails Facebook-like app.",
fork: false,
url: "https://api.github.com/repos/HackerYou/hackbook",
forks_url: "https://api.github.com/repos/HackerYou/hackbook/forks",
keys_url: "https://api.github.com/repos/HackerYou/hackbook/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/hackbook/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/hackbook/teams",
hooks_url: "https://api.github.com/repos/HackerYou/hackbook/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/hackbook/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/hackbook/events",
assignees_url: "https://api.github.com/repos/HackerYou/hackbook/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/hackbook/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/hackbook/tags",
blobs_url: "https://api.github.com/repos/HackerYou/hackbook/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/hackbook/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/hackbook/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/hackbook/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/hackbook/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/hackbook/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/hackbook/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/hackbook/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/hackbook/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/hackbook/subscription",
commits_url: "https://api.github.com/repos/HackerYou/hackbook/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/hackbook/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/hackbook/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/hackbook/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/hackbook/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/hackbook/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/hackbook/merges",
archive_url: "https://api.github.com/repos/HackerYou/hackbook/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/hackbook/downloads",
issues_url: "https://api.github.com/repos/HackerYou/hackbook/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/hackbook/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/hackbook/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/hackbook/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/hackbook/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/hackbook/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/hackbook/deployments",
created_at: "2014-04-06T14:24:07Z",
updated_at: "2014-04-28T23:18:06Z",
pushed_at: "2014-04-28T23:18:07Z",
git_url: "git://github.com/HackerYou/hackbook.git",
ssh_url: "git@github.com:HackerYou/hackbook.git",
clone_url: "https://github.com/HackerYou/hackbook.git",
svn_url: "https://github.com/HackerYou/hackbook",
homepage: null,
size: 267,
stargazers_count: 0,
watchers_count: 0,
language: "Ruby",
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: 0,
default_branch: "master"
},
{
id: 44770243,
name: "hackeryou-api",
full_name: "HackerYou/hackeryou-api",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/hackeryou-api",
description: "A simple api for HackerYou!",
fork: false,
url: "https://api.github.com/repos/HackerYou/hackeryou-api",
forks_url: "https://api.github.com/repos/HackerYou/hackeryou-api/forks",
keys_url: "https://api.github.com/repos/HackerYou/hackeryou-api/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/hackeryou-api/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/hackeryou-api/teams",
hooks_url: "https://api.github.com/repos/HackerYou/hackeryou-api/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/hackeryou-api/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/hackeryou-api/events",
assignees_url: "https://api.github.com/repos/HackerYou/hackeryou-api/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/hackeryou-api/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/hackeryou-api/tags",
blobs_url: "https://api.github.com/repos/HackerYou/hackeryou-api/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/hackeryou-api/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/hackeryou-api/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/hackeryou-api/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/hackeryou-api/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/hackeryou-api/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/hackeryou-api/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/hackeryou-api/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/hackeryou-api/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/hackeryou-api/subscription",
commits_url: "https://api.github.com/repos/HackerYou/hackeryou-api/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/hackeryou-api/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/hackeryou-api/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/hackeryou-api/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/hackeryou-api/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/hackeryou-api/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/hackeryou-api/merges",
archive_url: "https://api.github.com/repos/HackerYou/hackeryou-api/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/hackeryou-api/downloads",
issues_url: "https://api.github.com/repos/HackerYou/hackeryou-api/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/hackeryou-api/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/hackeryou-api/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/hackeryou-api/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/hackeryou-api/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/hackeryou-api/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/hackeryou-api/deployments",
created_at: "2015-10-22T20:06:12Z",
updated_at: "2016-07-13T22:37:59Z",
pushed_at: "2016-07-13T23:05:10Z",
git_url: "git://github.com/HackerYou/hackeryou-api.git",
ssh_url: "git@github.com:HackerYou/hackeryou-api.git",
clone_url: "https://github.com/HackerYou/hackeryou-api.git",
svn_url: "https://github.com/HackerYou/hackeryou-api",
homepage: "http://api.hackeryou.com",
size: 20,
stargazers_count: 5,
watchers_count: 5,
language: "JavaScript",
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: false,
forks_count: 4,
mirror_url: null,
open_issues_count: 1,
forks: 4,
open_issues: 1,
watchers: 5,
default_branch: "master"
},
{
id: 18075080,
name: "hacklaunch",
full_name: "HackerYou/hacklaunch",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/hacklaunch",
description: "",
fork: false,
url: "https://api.github.com/repos/HackerYou/hacklaunch",
forks_url: "https://api.github.com/repos/HackerYou/hacklaunch/forks",
keys_url: "https://api.github.com/repos/HackerYou/hacklaunch/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/hacklaunch/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/hacklaunch/teams",
hooks_url: "https://api.github.com/repos/HackerYou/hacklaunch/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/hacklaunch/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/hacklaunch/events",
assignees_url: "https://api.github.com/repos/HackerYou/hacklaunch/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/hacklaunch/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/hacklaunch/tags",
blobs_url: "https://api.github.com/repos/HackerYou/hacklaunch/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/hacklaunch/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/hacklaunch/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/hacklaunch/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/hacklaunch/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/hacklaunch/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/hacklaunch/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/hacklaunch/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/hacklaunch/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/hacklaunch/subscription",
commits_url: "https://api.github.com/repos/HackerYou/hacklaunch/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/hacklaunch/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/hacklaunch/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/hacklaunch/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/hacklaunch/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/hacklaunch/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/hacklaunch/merges",
archive_url: "https://api.github.com/repos/HackerYou/hacklaunch/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/hacklaunch/downloads",
issues_url: "https://api.github.com/repos/HackerYou/hacklaunch/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/hacklaunch/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/hacklaunch/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/hacklaunch/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/hacklaunch/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/hacklaunch/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/hacklaunch/deployments",
created_at: "2014-03-24T19:13:11Z",
updated_at: "2014-04-10T23:29:42Z",
pushed_at: "2014-04-10T23:29:42Z",
git_url: "git://github.com/HackerYou/hacklaunch.git",
ssh_url: "git@github.com:HackerYou/hacklaunch.git",
clone_url: "https://github.com/HackerYou/hacklaunch.git",
svn_url: "https://github.com/HackerYou/hacklaunch",
homepage: null,
size: 152,
stargazers_count: 0,
watchers_count: 0,
language: "Ruby",
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"
},
{
id: 17158767,
name: "hacklaunch-sinatra",
full_name: "HackerYou/hacklaunch-sinatra",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/hacklaunch-sinatra",
description: "A Sinatra Application for Launching Your Startup!",
fork: false,
url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra",
forks_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/forks",
keys_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/teams",
hooks_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/events",
assignees_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/tags",
blobs_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/subscription",
commits_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/merges",
archive_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/downloads",
issues_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/hacklaunch-sinatra/deployments",
created_at: "2014-02-25T02:35:10Z",
updated_at: "2014-03-15T18:39:20Z",
pushed_at: "2014-03-15T18:39:20Z",
git_url: "git://github.com/HackerYou/hacklaunch-sinatra.git",
ssh_url: "git@github.com:HackerYou/hacklaunch-sinatra.git",
clone_url: "https://github.com/HackerYou/hacklaunch-sinatra.git",
svn_url: "https://github.com/HackerYou/hacklaunch-sinatra",
homepage: null,
size: 152,
stargazers_count: 0,
watchers_count: 0,
language: "Ruby",
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"
},
{
id: 52983132,
name: "hottips",
full_name: "HackerYou/hottips",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/hottips",
description: "A collection of Developer organizational tools and methods",
fork: false,
url: "https://api.github.com/repos/HackerYou/hottips",
forks_url: "https://api.github.com/repos/HackerYou/hottips/forks",
keys_url: "https://api.github.com/repos/HackerYou/hottips/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/hottips/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/hottips/teams",
hooks_url: "https://api.github.com/repos/HackerYou/hottips/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/hottips/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/hottips/events",
assignees_url: "https://api.github.com/repos/HackerYou/hottips/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/hottips/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/hottips/tags",
blobs_url: "https://api.github.com/repos/HackerYou/hottips/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/hottips/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/hottips/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/hottips/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/hottips/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/hottips/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/hottips/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/hottips/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/hottips/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/hottips/subscription",
commits_url: "https://api.github.com/repos/HackerYou/hottips/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/hottips/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/hottips/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/hottips/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/hottips/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/hottips/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/hottips/merges",
archive_url: "https://api.github.com/repos/HackerYou/hottips/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/hottips/downloads",
issues_url: "https://api.github.com/repos/HackerYou/hottips/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/hottips/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/hottips/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/hottips/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/hottips/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/hottips/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/hottips/deployments",
created_at: "2016-03-02T17:38:15Z",
updated_at: "2016-06-12T02:04:26Z",
pushed_at: "2016-03-02T22:30:37Z",
git_url: "git://github.com/HackerYou/hottips.git",
ssh_url: "git@github.com:HackerYou/hottips.git",
clone_url: "https://github.com/HackerYou/hottips.git",
svn_url: "https://github.com/HackerYou/hottips",
homepage: null,
size: 5,
stargazers_count: 5,
watchers_count: 5,
language: null,
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: false,
forks_count: 3,
mirror_url: null,
open_issues_count: 1,
forks: 3,
open_issues: 1,
watchers: 5,
default_branch: "master"
},
{
id: 25472718,
name: "HYFallBootcamp2014",
full_name: "HackerYou/HYFallBootcamp2014",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/HYFallBootcamp2014",
description: "",
fork: false,
url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014",
forks_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/forks",
keys_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/teams",
hooks_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/events",
assignees_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/tags",
blobs_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/subscription",
commits_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/merges",
archive_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/downloads",
issues_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/HYFallBootcamp2014/deployments",
created_at: "2014-10-20T15:25:43Z",
updated_at: "2014-10-21T14:57:35Z",
pushed_at: "2014-10-21T16:36:25Z",
git_url: "git://github.com/HackerYou/HYFallBootcamp2014.git",
ssh_url: "git@github.com:HackerYou/HYFallBootcamp2014.git",
clone_url: "https://github.com/HackerYou/HYFallBootcamp2014.git",
svn_url: "https://github.com/HackerYou/HYFallBootcamp2014",
homepage: null,
size: 151155,
stargazers_count: 0,
watchers_count: 0,
language: "CSS",
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: true,
forks_count: 22,
mirror_url: null,
open_issues_count: 1,
forks: 22,
open_issues: 1,
watchers: 0,
default_branch: "master"
},
{
id: 23710642,
name: "interviewquestions",
full_name: "HackerYou/interviewquestions",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/interviewquestions",
description: "",
fork: false,
url: "https://api.github.com/repos/HackerYou/interviewquestions",
forks_url: "https://api.github.com/repos/HackerYou/interviewquestions/forks",
keys_url: "https://api.github.com/repos/HackerYou/interviewquestions/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/interviewquestions/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/interviewquestions/teams",
hooks_url: "https://api.github.com/repos/HackerYou/interviewquestions/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/interviewquestions/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/interviewquestions/events",
assignees_url: "https://api.github.com/repos/HackerYou/interviewquestions/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/interviewquestions/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/interviewquestions/tags",
blobs_url: "https://api.github.com/repos/HackerYou/interviewquestions/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/interviewquestions/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/interviewquestions/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/interviewquestions/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/interviewquestions/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/interviewquestions/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/interviewquestions/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/interviewquestions/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/interviewquestions/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/interviewquestions/subscription",
commits_url: "https://api.github.com/repos/HackerYou/interviewquestions/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/interviewquestions/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/interviewquestions/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/interviewquestions/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/interviewquestions/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/interviewquestions/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/interviewquestions/merges",
archive_url: "https://api.github.com/repos/HackerYou/interviewquestions/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/interviewquestions/downloads",
issues_url: "https://api.github.com/repos/HackerYou/interviewquestions/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/interviewquestions/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/interviewquestions/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/interviewquestions/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/interviewquestions/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/interviewquestions/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/interviewquestions/deployments",
created_at: "2014-09-05T16:48:09Z",
updated_at: "2016-03-28T18:20:48Z",
pushed_at: "2015-06-20T02:53:45Z",
git_url: "git://github.com/HackerYou/interviewquestions.git",
ssh_url: "git@github.com:HackerYou/interviewquestions.git",
clone_url: "https://github.com/HackerYou/interviewquestions.git",
svn_url: "https://github.com/HackerYou/interviewquestions",
homepage: null,
size: 153,
stargazers_count: 2,
watchers_count: 2,
language: "CSS",
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: true,
forks_count: 1,
mirror_url: null,
open_issues_count: 0,
forks: 1,
open_issues: 0,
watchers: 2,
default_branch: "gh-pages"
},
{
id: 44287864,
name: "json-proxy",
full_name: "HackerYou/json-proxy",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/json-proxy",
description: "Simple json proxy server",
fork: false,
url: "https://api.github.com/repos/HackerYou/json-proxy",
forks_url: "https://api.github.com/repos/HackerYou/json-proxy/forks",
keys_url: "https://api.github.com/repos/HackerYou/json-proxy/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/json-proxy/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/json-proxy/teams",
hooks_url: "https://api.github.com/repos/HackerYou/json-proxy/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/json-proxy/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/json-proxy/events",
assignees_url: "https://api.github.com/repos/HackerYou/json-proxy/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/json-proxy/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/json-proxy/tags",
blobs_url: "https://api.github.com/repos/HackerYou/json-proxy/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/json-proxy/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/json-proxy/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/json-proxy/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/json-proxy/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/json-proxy/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/json-proxy/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/json-proxy/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/json-proxy/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/json-proxy/subscription",
commits_url: "https://api.github.com/repos/HackerYou/json-proxy/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/json-proxy/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/json-proxy/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/json-proxy/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/json-proxy/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/json-proxy/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/json-proxy/merges",
archive_url: "https://api.github.com/repos/HackerYou/json-proxy/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/json-proxy/downloads",
issues_url: "https://api.github.com/repos/HackerYou/json-proxy/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/json-proxy/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/json-proxy/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/json-proxy/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/json-proxy/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/json-proxy/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/json-proxy/deployments",
created_at: "2015-10-15T02:05:21Z",
updated_at: "2016-08-04T12:32:22Z",
pushed_at: "2016-02-16T21:28:27Z",
git_url: "git://github.com/HackerYou/json-proxy.git",
ssh_url: "git@github.com:HackerYou/json-proxy.git",
clone_url: "https://github.com/HackerYou/json-proxy.git",
svn_url: "https://github.com/HackerYou/json-proxy",
homepage: null,
size: 5,
stargazers_count: 5,
watchers_count: 5,
language: "JavaScript",
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: false,
forks_count: 1,
mirror_url: null,
open_issues_count: 1,
forks: 1,
open_issues: 1,
watchers: 5,
default_branch: "master"
},
{
id: 11990351,
name: "lovely-flickr",
full_name: "HackerYou/lovely-flickr",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/lovely-flickr",
description: "",
fork: false,
url: "https://api.github.com/repos/HackerYou/lovely-flickr",
forks_url: "https://api.github.com/repos/HackerYou/lovely-flickr/forks",
keys_url: "https://api.github.com/repos/HackerYou/lovely-flickr/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/lovely-flickr/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/lovely-flickr/teams",
hooks_url: "https://api.github.com/repos/HackerYou/lovely-flickr/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/lovely-flickr/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/lovely-flickr/events",
assignees_url: "https://api.github.com/repos/HackerYou/lovely-flickr/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/lovely-flickr/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/lovely-flickr/tags",
blobs_url: "https://api.github.com/repos/HackerYou/lovely-flickr/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/lovely-flickr/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/lovely-flickr/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/lovely-flickr/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/lovely-flickr/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/lovely-flickr/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/lovely-flickr/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/lovely-flickr/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/lovely-flickr/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/lovely-flickr/subscription",
commits_url: "https://api.github.com/repos/HackerYou/lovely-flickr/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/lovely-flickr/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/lovely-flickr/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/lovely-flickr/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/lovely-flickr/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/lovely-flickr/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/lovely-flickr/merges",
archive_url: "https://api.github.com/repos/HackerYou/lovely-flickr/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/lovely-flickr/downloads",
issues_url: "https://api.github.com/repos/HackerYou/lovely-flickr/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/lovely-flickr/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/lovely-flickr/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/lovely-flickr/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/lovely-flickr/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/lovely-flickr/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/lovely-flickr/deployments",
created_at: "2013-08-09T01:18:40Z",
updated_at: "2013-10-06T06:33:03Z",
pushed_at: "2013-08-23T19:20:30Z",
git_url: "git://github.com/HackerYou/lovely-flickr.git",
ssh_url: "git@github.com:HackerYou/lovely-flickr.git",
clone_url: "https://github.com/HackerYou/lovely-flickr.git",
svn_url: "https://github.com/HackerYou/lovely-flickr",
homepage: null,
size: 256,
stargazers_count: 0,
watchers_count: 0,
language: "Ruby",
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: false,
forks_count: 3,
mirror_url: null,
open_issues_count: 0,
forks: 3,
open_issues: 0,
watchers: 0,
default_branch: "master"
},
{
id: 51173762,
name: "nodebots-workshop",
full_name: "HackerYou/nodebots-workshop",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/nodebots-workshop",
description: "",
fork: false,
url: "https://api.github.com/repos/HackerYou/nodebots-workshop",
forks_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/forks",
keys_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/teams",
hooks_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/events",
assignees_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/tags",
blobs_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/subscription",
commits_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/merges",
archive_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/downloads",
issues_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/nodebots-workshop/deployments",
created_at: "2016-02-05T21:01:49Z",
updated_at: "2016-02-05T21:08:28Z",
pushed_at: "2016-02-05T21:08:27Z",
git_url: "git://github.com/HackerYou/nodebots-workshop.git",
ssh_url: "git@github.com:HackerYou/nodebots-workshop.git",
clone_url: "https://github.com/HackerYou/nodebots-workshop.git",
svn_url: "https://github.com/HackerYou/nodebots-workshop",
homepage: null,
size: 12,
stargazers_count: 0,
watchers_count: 0,
language: "HTML",
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"
},
{
id: 19683958,
name: "rails_mailer_example",
full_name: "HackerYou/rails_mailer_example",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/rails_mailer_example",
description: "Sample App Illustration ActionMailer",
fork: false,
url: "https://api.github.com/repos/HackerYou/rails_mailer_example",
forks_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/forks",
keys_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/teams",
hooks_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/events",
assignees_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/tags",
blobs_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/subscription",
commits_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/merges",
archive_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/downloads",
issues_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/rails_mailer_example/deployments",
created_at: "2014-05-12T02:52:59Z",
updated_at: "2014-05-12T02:53:11Z",
pushed_at: "2014-05-12T02:53:12Z",
git_url: "git://github.com/HackerYou/rails_mailer_example.git",
ssh_url: "git@github.com:HackerYou/rails_mailer_example.git",
clone_url: "https://github.com/HackerYou/rails_mailer_example.git",
svn_url: "https://github.com/HackerYou/rails_mailer_example",
homepage: null,
size: 136,
stargazers_count: 0,
watchers_count: 0,
language: "Ruby",
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"
},
{
id: 17777706,
name: "rpt_todo",
full_name: "HackerYou/rpt_todo",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/rpt_todo",
description: "Todo App for the Intro to Rails course",
fork: false,
url: "https://api.github.com/repos/HackerYou/rpt_todo",
forks_url: "https://api.github.com/repos/HackerYou/rpt_todo/forks",
keys_url: "https://api.github.com/repos/HackerYou/rpt_todo/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/rpt_todo/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/rpt_todo/teams",
hooks_url: "https://api.github.com/repos/HackerYou/rpt_todo/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/rpt_todo/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/rpt_todo/events",
assignees_url: "https://api.github.com/repos/HackerYou/rpt_todo/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/rpt_todo/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/rpt_todo/tags",
blobs_url: "https://api.github.com/repos/HackerYou/rpt_todo/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/rpt_todo/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/rpt_todo/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/rpt_todo/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/rpt_todo/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/rpt_todo/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/rpt_todo/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/rpt_todo/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/rpt_todo/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/rpt_todo/subscription",
commits_url: "https://api.github.com/repos/HackerYou/rpt_todo/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/rpt_todo/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/rpt_todo/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/rpt_todo/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/rpt_todo/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/rpt_todo/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/rpt_todo/merges",
archive_url: "https://api.github.com/repos/HackerYou/rpt_todo/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/rpt_todo/downloads",
issues_url: "https://api.github.com/repos/HackerYou/rpt_todo/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/rpt_todo/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/rpt_todo/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/rpt_todo/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/rpt_todo/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/rpt_todo/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/rpt_todo/deployments",
created_at: "2014-03-15T14:55:40Z",
updated_at: "2014-03-15T14:56:35Z",
pushed_at: "2014-03-15T14:56:35Z",
git_url: "git://github.com/HackerYou/rpt_todo.git",
ssh_url: "git@github.com:HackerYou/rpt_todo.git",
clone_url: "https://github.com/HackerYou/rpt_todo.git",
svn_url: "https://github.com/HackerYou/rpt_todo",
homepage: null,
size: 98,
stargazers_count: 0,
watchers_count: 0,
language: "Ruby",
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: 0,
default_branch: "master"
},
{
id: 11688113,
name: "shitty-twitter",
full_name: "HackerYou/shitty-twitter",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/shitty-twitter",
description: "A really shitty twitter clone. Seriously it's terrible.",
fork: false,
url: "https://api.github.com/repos/HackerYou/shitty-twitter",
forks_url: "https://api.github.com/repos/HackerYou/shitty-twitter/forks",
keys_url: "https://api.github.com/repos/HackerYou/shitty-twitter/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/shitty-twitter/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/shitty-twitter/teams",
hooks_url: "https://api.github.com/repos/HackerYou/shitty-twitter/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/shitty-twitter/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/shitty-twitter/events",
assignees_url: "https://api.github.com/repos/HackerYou/shitty-twitter/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/shitty-twitter/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/shitty-twitter/tags",
blobs_url: "https://api.github.com/repos/HackerYou/shitty-twitter/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/shitty-twitter/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/shitty-twitter/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/shitty-twitter/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/shitty-twitter/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/shitty-twitter/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/shitty-twitter/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/shitty-twitter/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/shitty-twitter/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/shitty-twitter/subscription",
commits_url: "https://api.github.com/repos/HackerYou/shitty-twitter/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/shitty-twitter/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/shitty-twitter/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/shitty-twitter/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/shitty-twitter/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/shitty-twitter/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/shitty-twitter/merges",
archive_url: "https://api.github.com/repos/HackerYou/shitty-twitter/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/shitty-twitter/downloads",
issues_url: "https://api.github.com/repos/HackerYou/shitty-twitter/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/shitty-twitter/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/shitty-twitter/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/shitty-twitter/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/shitty-twitter/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/shitty-twitter/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/shitty-twitter/deployments",
created_at: "2013-07-26T14:56:24Z",
updated_at: "2014-06-12T08:36:55Z",
pushed_at: "2013-08-08T01:55:36Z",
git_url: "git://github.com/HackerYou/shitty-twitter.git",
ssh_url: "git@github.com:HackerYou/shitty-twitter.git",
clone_url: "https://github.com/HackerYou/shitty-twitter.git",
svn_url: "https://github.com/HackerYou/shitty-twitter",
homepage: null,
size: 99,
stargazers_count: 0,
watchers_count: 0,
language: "Ruby",
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: false,
forks_count: 8,
mirror_url: null,
open_issues_count: 0,
forks: 8,
open_issues: 0,
watchers: 0,
default_branch: "master"
},
{
id: 39447354,
name: "SlackerYou",
full_name: "HackerYou/SlackerYou",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/SlackerYou",
description: "A simple, real time chatroom built with Firebase and jQuery.",
fork: false,
url: "https://api.github.com/repos/HackerYou/SlackerYou",
forks_url: "https://api.github.com/repos/HackerYou/SlackerYou/forks",
keys_url: "https://api.github.com/repos/HackerYou/SlackerYou/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/SlackerYou/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/SlackerYou/teams",
hooks_url: "https://api.github.com/repos/HackerYou/SlackerYou/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/SlackerYou/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/SlackerYou/events",
assignees_url: "https://api.github.com/repos/HackerYou/SlackerYou/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/SlackerYou/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/SlackerYou/tags",
blobs_url: "https://api.github.com/repos/HackerYou/SlackerYou/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/SlackerYou/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/SlackerYou/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/SlackerYou/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/SlackerYou/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/SlackerYou/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/SlackerYou/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/SlackerYou/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/SlackerYou/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/SlackerYou/subscription",
commits_url: "https://api.github.com/repos/HackerYou/SlackerYou/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/SlackerYou/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/SlackerYou/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/SlackerYou/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/SlackerYou/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/SlackerYou/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/SlackerYou/merges",
archive_url: "https://api.github.com/repos/HackerYou/SlackerYou/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/SlackerYou/downloads",
issues_url: "https://api.github.com/repos/HackerYou/SlackerYou/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/SlackerYou/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/SlackerYou/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/SlackerYou/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/SlackerYou/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/SlackerYou/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/SlackerYou/deployments",
created_at: "2015-07-21T13:38:55Z",
updated_at: "2016-08-04T06:01:55Z",
pushed_at: "2015-09-05T00:11:57Z",
git_url: "git://github.com/HackerYou/SlackerYou.git",
ssh_url: "git@github.com:HackerYou/SlackerYou.git",
clone_url: "https://github.com/HackerYou/SlackerYou.git",
svn_url: "https://github.com/HackerYou/SlackerYou",
homepage: null,
size: 156,
stargazers_count: 64,
watchers_count: 64,
language: "JavaScript",
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: true,
forks_count: 9,
mirror_url: null,
open_issues_count: 0,
forks: 9,
open_issues: 0,
watchers: 64,
default_branch: "master"
},
{
id: 35892696,
name: "sp2015-collabo",
full_name: "HackerYou/sp2015-collabo",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/sp2015-collabo",
description: "",
fork: false,
url: "https://api.github.com/repos/HackerYou/sp2015-collabo",
forks_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/forks",
keys_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/teams",
hooks_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/events",
assignees_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/tags",
blobs_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/subscription",
commits_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/merges",
archive_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/downloads",
issues_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/sp2015-collabo/deployments",
created_at: "2015-05-19T15:59:03Z",
updated_at: "2015-05-19T16:01:31Z",
pushed_at: "2015-05-19T21:31:39Z",
git_url: "git://github.com/HackerYou/sp2015-collabo.git",
ssh_url: "git@github.com:HackerYou/sp2015-collabo.git",
clone_url: "https://github.com/HackerYou/sp2015-collabo.git",
svn_url: "https://github.com/HackerYou/sp2015-collabo",
homepage: null,
size: 14006,
stargazers_count: 0,
watchers_count: 0,
language: "HTML",
has_issues: true,
has_downloads: true,
has_wiki: true,
has_pages: false,
forks_count: 22,
mirror_url: null,
open_issues_count: 0,
forks: 22,
open_issues: 0,
watchers: 0,
default_branch: "master"
},
{
id: 55248469,
name: "tpltraining",
full_name: "HackerYou/tpltraining",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/tpltraining",
description: "",
fork: false,
url: "https://api.github.com/repos/HackerYou/tpltraining",
forks_url: "https://api.github.com/repos/HackerYou/tpltraining/forks",
keys_url: "https://api.github.com/repos/HackerYou/tpltraining/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/tpltraining/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/tpltraining/teams",
hooks_url: "https://api.github.com/repos/HackerYou/tpltraining/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/tpltraining/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/tpltraining/events",
assignees_url: "https://api.github.com/repos/HackerYou/tpltraining/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/tpltraining/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/tpltraining/tags",
blobs_url: "https://api.github.com/repos/HackerYou/tpltraining/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/tpltraining/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/tpltraining/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/tpltraining/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/tpltraining/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/tpltraining/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/tpltraining/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/tpltraining/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/tpltraining/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/tpltraining/subscription",
commits_url: "https://api.github.com/repos/HackerYou/tpltraining/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/tpltraining/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/tpltraining/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/tpltraining/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/tpltraining/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/tpltraining/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/tpltraining/merges",
archive_url: "https://api.github.com/repos/HackerYou/tpltraining/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/tpltraining/downloads",
issues_url: "https://api.github.com/repos/HackerYou/tpltraining/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/tpltraining/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/tpltraining/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/tpltraining/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/tpltraining/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/tpltraining/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/tpltraining/deployments",
created_at: "2016-04-01T17:00:46Z",
updated_at: "2016-04-04T20:52:11Z",
pushed_at: "2016-04-05T14:30:43Z",
git_url: "git://github.com/HackerYou/tpltraining.git",
ssh_url: "git@github.com:HackerYou/tpltraining.git",
clone_url: "https://github.com/HackerYou/tpltraining.git",
svn_url: "https://github.com/HackerYou/tpltraining",
homepage: null,
size: 2128,
stargazers_count: 0,
watchers_count: 0,
language: "HTML",
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: 0,
default_branch: "master"
},
{
id: 7996950,
name: "twitter-like-app",
full_name: "HackerYou/twitter-like-app",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/twitter-like-app",
description: "A Sample *very simple* Twitter-like app generated with Rails Scaffolds",
fork: false,
url: "https://api.github.com/repos/HackerYou/twitter-like-app",
forks_url: "https://api.github.com/repos/HackerYou/twitter-like-app/forks",
keys_url: "https://api.github.com/repos/HackerYou/twitter-like-app/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/twitter-like-app/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/twitter-like-app/teams",
hooks_url: "https://api.github.com/repos/HackerYou/twitter-like-app/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/twitter-like-app/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/twitter-like-app/events",
assignees_url: "https://api.github.com/repos/HackerYou/twitter-like-app/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/twitter-like-app/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/twitter-like-app/tags",
blobs_url: "https://api.github.com/repos/HackerYou/twitter-like-app/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/twitter-like-app/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/twitter-like-app/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/twitter-like-app/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/twitter-like-app/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/twitter-like-app/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/twitter-like-app/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/twitter-like-app/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/twitter-like-app/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/twitter-like-app/subscription",
commits_url: "https://api.github.com/repos/HackerYou/twitter-like-app/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/twitter-like-app/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/twitter-like-app/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/twitter-like-app/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/twitter-like-app/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/twitter-like-app/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/twitter-like-app/merges",
archive_url: "https://api.github.com/repos/HackerYou/twitter-like-app/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/twitter-like-app/downloads",
issues_url: "https://api.github.com/repos/HackerYou/twitter-like-app/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/twitter-like-app/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/twitter-like-app/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/twitter-like-app/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/twitter-like-app/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/twitter-like-app/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/twitter-like-app/deployments",
created_at: "2013-02-03T21:32:11Z",
updated_at: "2014-02-02T16:51:54Z",
pushed_at: "2013-02-03T21:59:03Z",
git_url: "git://github.com/HackerYou/twitter-like-app.git",
ssh_url: "git@github.com:HackerYou/twitter-like-app.git",
clone_url: "https://github.com/HackerYou/twitter-like-app.git",
svn_url: "https://github.com/HackerYou/twitter-like-app",
homepage: null,
size: 132,
stargazers_count: 1,
watchers_count: 1,
language: "Ruby",
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"
},
{
id: 17233077,
name: "twitter-sinatra",
full_name: "HackerYou/twitter-sinatra",
owner: {
login: "HackerYou",
id: 2479724,
avatar_url: "https://avatars.githubusercontent.com/u/2479724?v=3",
gravatar_id: "",
url: "https://api.github.com/users/HackerYou",
html_url: "https://github.com/HackerYou",
followers_url: "https://api.github.com/users/HackerYou/followers",
following_url: "https://api.github.com/users/HackerYou/following{/other_user}",
gists_url: "https://api.github.com/users/HackerYou/gists{/gist_id}",
starred_url: "https://api.github.com/users/HackerYou/starred{/owner}{/repo}",
subscriptions_url: "https://api.github.com/users/HackerYou/subscriptions",
organizations_url: "https://api.github.com/users/HackerYou/orgs",
repos_url: "https://api.github.com/users/HackerYou/repos",
events_url: "https://api.github.com/users/HackerYou/events{/privacy}",
received_events_url: "https://api.github.com/users/HackerYou/received_events",
type: "Organization",
site_admin: false
},
private: false,
html_url: "https://github.com/HackerYou/twitter-sinatra",
description: "Using the Twitter API in a Sinatra App",
fork: false,
url: "https://api.github.com/repos/HackerYou/twitter-sinatra",
forks_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/forks",
keys_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/keys{/key_id}",
collaborators_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/collaborators{/collaborator}",
teams_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/teams",
hooks_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/hooks",
issue_events_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/issues/events{/number}",
events_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/events",
assignees_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/assignees{/user}",
branches_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/branches{/branch}",
tags_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/tags",
blobs_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/git/blobs{/sha}",
git_tags_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/git/tags{/sha}",
git_refs_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/git/refs{/sha}",
trees_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/git/trees{/sha}",
statuses_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/statuses/{sha}",
languages_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/languages",
stargazers_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/stargazers",
contributors_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/contributors",
subscribers_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/subscribers",
subscription_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/subscription",
commits_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/commits{/sha}",
git_commits_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/git/commits{/sha}",
comments_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/comments{/number}",
issue_comment_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/issues/comments{/number}",
contents_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/contents/{+path}",
compare_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/compare/{base}...{head}",
merges_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/merges",
archive_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/{archive_format}{/ref}",
downloads_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/downloads",
issues_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/issues{/number}",
pulls_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/pulls{/number}",
milestones_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/milestones{/number}",
notifications_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/notifications{?since,all,participating}",
labels_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/labels{/name}",
releases_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/releases{/id}",
deployments_url: "https://api.github.com/repos/HackerYou/twitter-sinatra/deployments",
created_at: "2014-02-27T02:04:24Z",
updated_at: "2015-02-22T00:49:09Z",
pushed_at: "2015-02-22T00:49:08Z",
git_url: "git://github.com/HackerYou/twitter-sinatra.git",
ssh_url: "git@github.com:HackerYou/twitter-sinatra.git",
clone_url: "https://github.com/HackerYou/twitter-sinatra.git",
svn_url: "https://github.com/HackerYou/twitter-sinatra",
homepage: null,
size: 138,
stargazers_count: 1,
watchers_count: 1,
language: "Ruby",
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"
}
]

Get User Repo Languages

GET http://localhost:8099/repos/HackerYou/amazon/languages

{
Ruby: 21246,
CSS: 1924,
JavaScript: 664,
CoffeeScript: 422
}

About

Project to create a fake of a portion the github user api

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages