octokit 1.25.0 → 2.0.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +10 -7
- data/lib/octokit.rb +22 -15
- data/lib/octokit/arguments.rb +14 -0
- data/lib/octokit/authentication.rb +48 -25
- data/lib/octokit/client.rb +245 -44
- data/lib/octokit/client/authorizations.rb +36 -10
- data/lib/octokit/client/commit_comments.rb +96 -0
- data/lib/octokit/client/commits.rb +152 -94
- data/lib/octokit/client/contents.rb +32 -24
- data/lib/octokit/client/downloads.rb +11 -7
- data/lib/octokit/client/emojis.rb +3 -1
- data/lib/octokit/client/events.rb +62 -18
- data/lib/octokit/client/gists.rb +27 -26
- data/lib/octokit/client/gitignore.rb +7 -3
- data/lib/octokit/client/issues.rb +43 -71
- data/lib/octokit/client/labels.rb +24 -20
- data/lib/octokit/client/legacy_search.rb +78 -0
- data/lib/octokit/client/markdown.rb +6 -1
- data/lib/octokit/client/meta.rb +21 -0
- data/lib/octokit/client/milestones.rb +13 -9
- data/lib/octokit/client/notifications.rb +24 -64
- data/lib/octokit/client/objects.rb +17 -12
- data/lib/octokit/client/organizations.rb +43 -52
- data/lib/octokit/client/pub_sub_hubbub.rb +68 -8
- data/lib/octokit/client/{pulls.rb → pull_requests.rb} +65 -41
- data/lib/octokit/client/rate_limit.rb +42 -8
- data/lib/octokit/client/refs.rb +16 -10
- data/lib/octokit/client/repositories.rb +73 -124
- data/lib/octokit/client/say.rb +7 -1
- data/lib/octokit/client/service_status.rb +39 -0
- data/lib/octokit/client/stats.rb +12 -6
- data/lib/octokit/client/statuses.rb +8 -29
- data/lib/octokit/client/users.rb +56 -75
- data/lib/octokit/configurable.rb +117 -0
- data/lib/octokit/default.rb +140 -0
- data/lib/octokit/error.rb +6 -5
- data/lib/octokit/gist.rb +11 -0
- data/lib/octokit/rate_limit.rb +22 -0
- data/lib/octokit/repo_arguments.rb +19 -0
- data/lib/octokit/repository.rb +11 -4
- data/lib/octokit/response/raise_error.rb +35 -0
- data/lib/octokit/version.rb +5 -1
- data/octokit.gemspec +4 -9
- data/spec/cassettes/Octokit_Client/_get/handles_query_params.json +1 -0
- data/spec/cassettes/Octokit_Client/_head/handles_query_params.json +1 -0
- data/spec/cassettes/Octokit_Client/_last_response/caches_the_last_agent_response.json +1 -0
- data/spec/cassettes/Octokit_Client/authentication/when_token_authenticated/fetches_and_memoizes_login.json +1 -0
- data/spec/cassettes/Octokit_Client/auto_pagination/fetches_all_the_pages.json +1 -0
- data/spec/cassettes/Octokit_Client/error_handling/raises_on_404.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_authorization/returns_a_single_authorization.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_authorizations/lists_existing_authorizations.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_create_authorization/creates_a_new_authorization_with_options.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_create_authorization/creates_an_API_authorization.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_scopes/checks_the_scopes_on_a_one-off_token.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_scopes/checks_the_scopes_on_the_current_token.json +1 -0
- data/spec/cassettes/Octokit_Client_Authorizations/_update_authorization/updates_and_existing_authorization.json +1 -0
- data/spec/cassettes/Octokit_Client_CommitComments/_commit_comment/returns_a_single_commit_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_CommitComments/_commit_comments/returns_a_list_of_comments_for_a_specific_commit.json +1 -0
- data/spec/cassettes/Octokit_Client_CommitComments/_create_commit_comment/creates_a_commit_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_CommitComments/_delete_commit_comment/deletes_a_commit_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_CommitComments/_list_commit_comments/returns_a_list_of_all_commit_comments.json +1 -0
- data/spec/cassettes/Octokit_Client_CommitComments/_update_commit_comment/updates_a_commit_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commit/returns_a_commit.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits/handles_branch_or_sha_argument.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits/handles_the_sha_option.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits/returns_all_commits.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_before/handles_branch_or_sha_argument.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_before/handles_the_sha_option.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_before/returns_all_commits_until_the_specified_date.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_between/handles_branch_or_sha_argument.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_between/handles_the_sha_option.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_between/returns_all_commits_until_the_specified_date.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_on/handles_branch_or_sha_argument.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_on/handles_the_sha_option.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_on/returns_all_commits_on_the_specified_date.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_since/handles_branch_or_sha_argument.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_since/handles_the_sha_option.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_commits_since/returns_all_commits_since_the_specified_date.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_compare/returns_a_comparison.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_create_commit/creates_a_commit.json +1 -0
- data/spec/cassettes/Octokit_Client_Commits/_merge/merges_a_branch_into_another.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_archive_link/returns_the_headers_of_the_request.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_contents/returns_the_contents_of_a_file.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_create_contents/creates_contents_from_File_object.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_create_contents/creates_contents_from_file_path.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_create_contents/creates_repository_contents_at_a_path.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_delete_contents/deletes_repository_contents_at_a_path.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_readme/returns_the_default_readme.json +1 -0
- data/spec/cassettes/Octokit_Client_Contents/_update_contents/updates_repository_contents_at_a_path.json +1 -0
- data/spec/cassettes/Octokit_Client_Downloads/_download/gets_a_single_download.json +1 -0
- data/spec/cassettes/Octokit_Client_Downloads/_downloads/lists_available_downloads.json +1 -0
- data/spec/cassettes/Octokit_Client_Downloads/methods_that_require_a_download/_create_download/creates_a_download_resource.json +1 -0
- data/spec/cassettes/Octokit_Client_Downloads/methods_that_require_a_download/_create_download/posts_to_an_S3_url.json +1 -0
- data/spec/cassettes/Octokit_Client_Downloads/methods_that_require_a_download/_delete_download/deletes_a_download.json +1 -0
- data/spec/cassettes/Octokit_Client_Emojis/_emojis/returns_all_github_emojis.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_issue_event/lists_issue_events_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_issue_events/lists_issue_events_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_organization_events/returns_all_events_for_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_organization_public_events/returns_an_organization_s_public_events.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_public_events/returns_all_public_events.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_received_events/returns_all_user_received_events.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_received_public_events/returns_public_user_received_events.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_repo_issue_events/lists_issue_events_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_repository_events/returns_events_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_repository_network_events/returns_events_for_a_repository_s_network.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_user_events/returns_all_user_events.json +1 -0
- data/spec/cassettes/Octokit_Client_Events/_user_public_events/returns_public_events_performed_by_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/unauthenticated/_gist/returns_the_gist_by_ID.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/unauthenticated/_gists/with_username_passed/returns_a_list_of_gists.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/unauthenticated/_gists/without_a_username_passed/returns_a_list_of_gists.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/unauthenticated/_public_gists/returns_public_gists.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_create_gist/creates_a_new_gist.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_create_gist_comment/creates_a_gist_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_delete_gist/deletes_an_existing_gist.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_delete_gist_comment/deletes_a_gist_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_edit_gist/edit_an_existing_gist.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_fork_gist/forks_an_existing_gist.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_gist_comment/returns_a_gist_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_gist_comments/returns_the_list_of_gist_comments.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_gist_starred_/is_not_starred.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_gist_starred_/is_starred.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_gists/returns_a_list_of_gists.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_star_gist/stars_an_existing_gist.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_starred_gists/returns_the_user_s_starred_gists.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_unstar_gist/unstars_an_existing_gist.json +1 -0
- data/spec/cassettes/Octokit_Client_Gists/when_authenticated/_update_gist_comment/updates_a_gist_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Gitignore/_gitignore_template/returns_the_ruby_gitignore_template.json +1 -0
- data/spec/cassettes/Octokit_Client_Gitignore/_gitignore_templates/returns_all_gitignore_templates.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_create_issue/creates_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_create_issue/creates_an_issue_with_delimited_labels.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_create_issue/creates_an_issue_with_labels_array.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_issue_comment/returns_a_single_comment_for_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_issue_comments/returns_comments_for_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_list_issues/returns_dashboard_issues_for_the_authenticated_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_list_issues/returns_issues_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_org_issues/returns_issues_for_the_organization_for_the_authenticated_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_repository_issues_comments/returns_comments_for_all_issues_in_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/_user_issues/returns_issues_for_the_authenticated_user_for_owned_and_member_repos.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/_add_comment/adds_a_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/_close_issue/closes_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/_issue/returns_a_full_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/_issue/returns_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/_reopen_issue/reopens_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/_update_issue/updates_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/methods_requiring_a_new_issue_comment/_delete_comment/deletes_an_existing_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Issues/methods_requiring_a_new_issue/methods_requiring_a_new_issue_comment/_update_comment/updates_an_existing_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/_add_label/adds_a_label_with_a_color.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/_add_label/adds_a_label_with_default_color.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/_delete_label_/deletes_a_label_from_the_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/_label/returns_a_single_label.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/_labels/returns_labels.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/_lables_for_milestone/returns_all_labels_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/methods_requiring_a_new_issue/_add_labels_to_an_issue/adds_labels_to_a_given_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/methods_requiring_a_new_issue/_labels_for_issue/returns_all_labels_for_a_given_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/methods_requiring_a_new_issue/_remove_all_labels/removes_all_labels_from_the_specified_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/methods_requiring_a_new_issue/_remove_label/removes_a_label_from_the_specified_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/methods_requiring_a_new_issue/_replace_all_labels/replaces_all_labels_for_an_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_Labels/methods_requiring_a_new_label/_update_label/updates_a_label_with_a_new_color.json +1 -0
- data/spec/cassettes/Octokit_Client_LegacySearch/_legacy_search_issues/returns_matching_issues.json +1 -0
- data/spec/cassettes/Octokit_Client_LegacySearch/_legacy_search_repos/returns_matching_repositories.json +1 -0
- data/spec/cassettes/Octokit_Client_LegacySearch/_legacy_search_users/returns_matching_username.json +1 -0
- data/spec/cassettes/Octokit_Client_Markdown/_markdown/renders_markdown.json +1 -0
- data/spec/cassettes/Octokit_Client_Meta/_github_meta/returns_meta_information_about_github.json +1 -0
- data/spec/cassettes/Octokit_Client_Milestones/_list_milestones/lists_milestones_belonging_to_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Milestones/methods_that_need_a_milestone/_create_milestone/creates_a_milestone.json +1 -0
- data/spec/cassettes/Octokit_Client_Milestones/methods_that_need_a_milestone/_delete_milestone/deletes_a_milestone_from_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Milestones/methods_that_need_a_milestone/_milestone/gets_a_single_milestone_belonging_to_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Milestones/methods_that_need_a_milestone/_update_milestone/updates_a_milestone.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/_mark_notifications_as_read/returns_true_when_notifications_are_marked_as_read.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/_mark_repository_notifications_as_read/returns_true_when_notifications_for_a_repo_are_marked_as_read.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/_notifications/lists_the_notifications_for_the_current_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/_repository_notifications/lists_all_notifications_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/methods_that_need_a_thread_context/_delete_thread_subscription/returns_true_with_successful_thread_deletion.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/methods_that_need_a_thread_context/_mark_thread_as_read/marks_a_thread_as_read.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/methods_that_need_a_thread_context/_thread_notifications/returns_notifications_for_a_specific_thread.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/methods_that_need_a_thread_context/_thread_subscription/returns_a_thread_subscription.json +1 -0
- data/spec/cassettes/Octokit_Client_Notifications/methods_that_need_a_thread_context/_update_thread_subscription/updates_a_thread_subscription.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_blob/returns_a_blob.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_create_blob/creates_a_blob.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_create_tag/creates_a_tag.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_create_tree/creates_a_tree.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_tag/returns_a_tag.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_tree/gets_a_tree.json +1 -0
- data/spec/cassettes/Octokit_Client_Objects/_tree/gets_a_tree_recursively.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organization/returns_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organization_member_/checks_organization_membership.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organization_members/returns_all_public_members_of_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organization_public_member_/checks_publicized_org_membership.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organization_repositories/returns_all_public_repositories_for_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organization_teams/returns_all_teams_for_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organizations/returns_all_organizations_for_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_organizations/returns_all_organizations_for_the_authenticated_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/_update_organization/updates_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_add_team_member/adds_a_team_member.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_add_team_repository/adds_a_team_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_create_team/creates_a_team.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_delete_team/deletes_a_team.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_publicize_membership/publicizes_membership.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_remove_team_member/removes_a_team_member.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_remove_team_repository/removes_a_team_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_team/returns_a_team.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_team_member_/checks_if_a_user_is_member_of_a_team.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_team_members/returns_team_members.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_team_repositories/returns_team_repositories.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_unpublicize_membership/unpublicizes_membership.json +1 -0
- data/spec/cassettes/Octokit_Client_Organizations/methods_that_require_a_new_team/_update_team/updates_a_team.json +1 -0
- data/spec/cassettes/Octokit_Client_PubSubHubbub/_subscribe/raises_an_error_when_topic_is_not_recognized.json +1 -0
- data/spec/cassettes/Octokit_Client_PubSubHubbub/_subscribe/subscribes_to_pull_events.json +1 -0
- data/spec/cassettes/Octokit_Client_PubSubHubbub/_subscribe_service_hook/subscribes_to_pull_events_on_specified_topic.json +1 -0
- data/spec/cassettes/Octokit_Client_PubSubHubbub/_unsubscribe/unsubscribes_from_pull_events.json +1 -0
- data/spec/cassettes/Octokit_Client_PubSubHubbub/unsubscribe_service_hook/unsubscribes_to_stop_receiving_events_on_specified_topic.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_create_pull_request_for_issue/creates_a_pull_request_and_attach_it_to_an_existing_issue.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_pull_request_comment/returns_a_comment_on_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_pull_request_comments/returns_the_comments_for_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_pull_request_commits/returns_the_commits_for_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_pull_request_files/lists_files_for_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_pull_requests/returns_all_pull_requests.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/_pull_requests_comments/returns_all_comments_on_all_pull_requests.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/_close_pull_request/closes_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/_create_pull_request/creates_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/_merge_pull_request/merges_the_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/_pull_merged_/returns_whether_the_pull_request_has_been_merged.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/_pull_request/returns_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/_update_pull_request/updates_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/methods_requiring_a_pull_request_comment/_create_pull_request_comment/creates_a_new_comment_on_a_pull_request.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/methods_requiring_a_pull_request_comment/_create_pull_request_comment_reply/creates_a_new_reply_to_a_pull_request_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/methods_requiring_a_pull_request_comment/_delete_pull_request_comment/deletes_a_pull_request_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_PullRequests/methods_that_require_a_new_pull/methods_requiring_a_pull_request_comment/_update_pull_request_comment/updates_a_pull_request_comment.json +1 -0
- data/spec/cassettes/Octokit_Client_Refs/_ref/returns_a_tags_ref.json +1 -0
- data/spec/cassettes/Octokit_Client_Refs/_refs/returns_all_refs.json +1 -0
- data/spec/cassettes/Octokit_Client_Refs/_refs/returns_all_tag_refs.json +1 -0
- data/spec/cassettes/Octokit_Client_Refs/methods_that_require_a_ref/_create_ref/creates_a_ref.json +1 -0
- data/spec/cassettes/Octokit_Client_Refs/methods_that_require_a_ref/_delete_ref/deletes_an_existing_ref.json +1 -0
- data/spec/cassettes/Octokit_Client_Refs/methods_that_require_a_ref/_update_ref/updates_a_ref.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_all_repositories/returns_all_repositories_on_github.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_assignees/lists_all_the_available_assignees_owner_collaborators_.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_branches/returns_a_repository_s_branches.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_branches/returns_a_single_branch.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_check_assignee/checks_to_see_if_a_particular_user_is_an_assignee_for_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_collaborators/returns_a_repository_s_collaborators.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_contributors/returns_repository_contributors.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_contributors/returns_repository_contributors_excluding_anonymous.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_create_repository/creates_a_repository_for_an_organization.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_delete_subscription/returns_true_when_repo_subscription_deleted.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_fork/forks_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_languages/returns_a_repository_s_languages.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_network/returns_a_repository_s_network.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_repositories/returns_a_user_s_repositories.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_repositories/returns_authenticated_user_s_repositories.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_repository/returns_the_matching_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_repository_/returns_false_if_the_repository_doesn_t_exist.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_repository_/returns_true_if_the_repository_exists.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_star/stars_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_stargazers/returns_all_repository_stargazers.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_subscribers/lists_all_the_users_watching_the_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_subscription/returns_a_repository_subscription.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_tags/returns_a_repository_s_tags.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_unstar/unstars_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_unwatch/unwatches_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_update_subscription/updates_a_repository_subscription.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_watch/watches_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/_watchers/returns_all_repository_watchers.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_add_collaborator/adds_a_repository_collaborators.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_create_repository/creates_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_delete_repository/deletes_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_deploy_keys/returns_a_repository_s_deploy_keys.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_hooks/returns_a_repository_s_hooks.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_remove_collaborator/removes_a_repository_collaborators.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_repository_teams/returns_all_repository_teams.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/_update_repository/updates_the_matching_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/methods_requiring_an_existing_deploy_key/_add_deploy_key/adds_a_repository_deploy_keys.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/methods_that_need_an_existing_hook/_create_hook/creates_a_hook.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/methods_that_need_an_existing_hook/_edit_hook/edits_a_hook.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/methods_that_need_an_existing_hook/_hook/returns_a_repository_s_single_hook.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/methods_that_need_an_existing_hook/_remove_hook/removes_a_hook.json +1 -0
- data/spec/cassettes/Octokit_Client_Repositories/methods_that_require_a_new_repo/methods_that_need_an_existing_hook/_test_hook/tests_a_hook.json +1 -0
- data/spec/cassettes/Octokit_Client_Say/_say/returns_an_ASCII_octocat.json +1 -0
- data/spec/cassettes/Octokit_Client_Say/_say/returns_an_ASCII_octocat_with_custom_text.json +1 -0
- data/spec/cassettes/Octokit_Client_ServiceStatus/_github_status/returns_the_current_system_status.json +1 -0
- data/spec/cassettes/Octokit_Client_ServiceStatus/_github_status/returns_the_most_recent_status_messages.json +1 -0
- data/spec/cassettes/Octokit_Client_ServiceStatus/_github_status_last_message/returns_the_last_human_message.json +1 -0
- data/spec/cassettes/Octokit_Client_Stats/_code_frequency_stats/returns_the_code_frequency_stats.json +1 -0
- data/spec/cassettes/Octokit_Client_Stats/_commit_activity_stats/returns_the_commit_activity_stats.json +1 -0
- data/spec/cassettes/Octokit_Client_Stats/_contributors_stats/returns_contributors_and_their_contribution_stats.json +1 -0
- data/spec/cassettes/Octokit_Client_Stats/_participation_stats/returns_the_owner_and_contributor_participation_stats.json +1 -0
- data/spec/cassettes/Octokit_Client_Stats/_punch_card_stats/returns_commit_count_by_hour_punch_card_stats.json +1 -0
- data/spec/cassettes/Octokit_Client_Statuses/_create_status/creates_status.json +1 -0
- data/spec/cassettes/Octokit_Client_Statuses/_statuses/lists_commit_statuses.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_add_email/adds_an_email_address.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_all_users/returns_all_GitHub_users.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_emails/returns_email_addresses.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_follow/follows_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_followers/returns_followers_for_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_followers/returns_the_authenticated_user_s_followers.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_following/returns_following_for_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_following/returns_the_authenticated_user_s_following.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_follows_/checks_if_the_authenticated_user_follows_another.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_keys/returns_public_keys_for_the_authenticated_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_remove_email/removes_an_email_address.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_starred/returns_starred_repositories_for_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_starred/returns_starred_repositories_for_the_authenticated_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_starred_/checks_if_the_authenticated_user_has_starred_a_repository.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_subscriptions/returns_the_repositories_a_user_watches_for_notifications.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_subscriptions/returns_the_repositories_the_authenticated_user_watches_for_notifications.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_unfollow/unfollows_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_update_user/updates_a_user_profile.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_user/returns_a_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_user/returns_the_authenticated_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_user_keys/returns_public_keys_for_another_user.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/_validate_credentials/validates_username_and_password.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/methods_requiring_an_existing_public_key/_add_key/adds_a_public_key.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/methods_requiring_an_existing_public_key/_key/returns_a_public_key.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/methods_requiring_an_existing_public_key/_remove_key/removes_a_public_key.json +1 -0
- data/spec/cassettes/Octokit_Client_Users/methods_requiring_an_existing_public_key/_update_key/updates_a_public_key.json +1 -0
- data/spec/cassettes/delete_authorization.json +1 -0
- data/spec/cassettes/rate_limit.json +1 -0
- data/spec/cassettes/root.json +1 -0
- data/spec/fixtures/user.json +29 -18
- data/spec/fixtures/{user_token.json → web_flow_token.json} +0 -0
- data/spec/helper.rb +49 -22
- data/spec/octokit/client/authorizations_spec.rb +69 -80
- data/spec/octokit/client/commit_comments_spec.rb +62 -0
- data/spec/octokit/client/commits_spec.rb +93 -226
- data/spec/octokit/client/contents_spec.rb +64 -119
- data/spec/octokit/client/downloads_spec.rb +34 -38
- data/spec/octokit/client/emojis_spec.rb +5 -11
- data/spec/octokit/client/events_spec.rb +67 -51
- data/spec/octokit/client/gists_spec.rb +148 -142
- data/spec/octokit/client/gitignore_spec.rb +11 -14
- data/spec/octokit/client/issues_spec.rb +129 -161
- data/spec/octokit/client/labels_spec.rb +81 -114
- data/spec/octokit/client/legacy_search_spec.rb +42 -0
- data/spec/octokit/client/markdown_spec.rb +9 -12
- data/spec/octokit/client/meta_spec.rb +14 -0
- data/spec/octokit/client/milestones_spec.rb +40 -48
- data/spec/octokit/client/notifications_spec.rb +57 -113
- data/spec/octokit/client/objects_spec.rb +36 -74
- data/spec/octokit/client/organizations_spec.rb +140 -262
- data/spec/octokit/client/pub_sub_hubbub_spec.rb +58 -49
- data/spec/octokit/client/pull_requests_spec.rb +186 -0
- data/spec/octokit/client/rate_limit_spec.rb +40 -0
- data/spec/octokit/client/refs_spec.rb +47 -56
- data/spec/octokit/client/repositories_spec.rb +301 -438
- data/spec/octokit/client/say_spec.rb +8 -22
- data/spec/octokit/client/service_status_spec.rb +37 -0
- data/spec/octokit/client/stats_spec.rb +82 -32
- data/spec/octokit/client/statuses_spec.rb +11 -51
- data/spec/octokit/client/users_spec.rb +144 -348
- data/spec/octokit/client_spec.rb +345 -195
- data/spec/octokit/rate_limit_spec.rb +25 -0
- data/spec/octokit_spec.rb +31 -15
- metadata +585 -387
- data/lib/faraday/response/raise_octokit_error.rb +0 -25
- data/lib/octokit/client/github.rb +0 -19
- data/lib/octokit/client/pub_sub_hubbub/service_hooks.rb +0 -37
- data/lib/octokit/configuration.rb +0 -77
- data/lib/octokit/connection.rb +0 -53
- data/lib/octokit/request.rb +0 -110
- data/spec/faraday/response_spec.rb +0 -63
- data/spec/fixtures/all_repositories.json +0 -122
- data/spec/fixtures/all_users.json +0 -34
- data/spec/fixtures/authorization.json +0 -16
- data/spec/fixtures/authorizations.json +0 -66
- data/spec/fixtures/blob.json +0 -7
- data/spec/fixtures/blob_create.json +0 -3
- data/spec/fixtures/branches.json +0 -16
- data/spec/fixtures/code_frequency_stats.json +0 -897
- data/spec/fixtures/collaborators.json +0 -62
- data/spec/fixtures/comment.json +0 -14
- data/spec/fixtures/comments.json +0 -44
- data/spec/fixtures/commit.json +0 -50
- data/spec/fixtures/commit_activity_stats.json +0 -678
- data/spec/fixtures/commit_comment.json +0 -19
- data/spec/fixtures/commit_comment_create.json +0 -19
- data/spec/fixtures/commit_comment_update.json +0 -19
- data/spec/fixtures/commit_comments.json +0 -78
- data/spec/fixtures/commit_create.json +0 -25
- data/spec/fixtures/commits.json +0 -1414
- data/spec/fixtures/compare.json +0 -98
- data/spec/fixtures/contents.json +0 -14
- data/spec/fixtures/contributor_stats.json +0 -2196
- data/spec/fixtures/contributors.json +0 -891
- data/spec/fixtures/create_content.json +0 -44
- data/spec/fixtures/delete_content.json +0 -30
- data/spec/fixtures/download.json +0 -11
- data/spec/fixtures/download_create.json +0 -21
- data/spec/fixtures/downloads.json +0 -35
- data/spec/fixtures/emails.json +0 -4
- data/spec/fixtures/emojis.json +0 -500
- data/spec/fixtures/followers.json +0 -212
- data/spec/fixtures/following.json +0 -209
- data/spec/fixtures/forks.json +0 -872
- data/spec/fixtures/gist.json +0 -51
- data/spec/fixtures/gist_comment.json +0 -19
- data/spec/fixtures/gist_comment_create.json +0 -19
- data/spec/fixtures/gist_comment_update.json +0 -19
- data/spec/fixtures/gist_comments.json +0 -40
- data/spec/fixtures/gists.json +0 -548
- data/spec/fixtures/github_meta.json +0 -9
- data/spec/fixtures/github_status.json +0 -4
- data/spec/fixtures/github_status_last_message.json +0 -5
- data/spec/fixtures/github_status_messages.json +0 -12
- data/spec/fixtures/gitignore_template_ruby.json +0 -4
- data/spec/fixtures/gitignore_templates.json +0 -78
- data/spec/fixtures/hook.json +0 -18
- data/spec/fixtures/hooks.json +0 -70
- data/spec/fixtures/issue.json +0 -35
- data/spec/fixtures/issue_closed.json +0 -35
- data/spec/fixtures/issue_event.json +0 -42
- data/spec/fixtures/issue_events.json +0 -72
- data/spec/fixtures/issue_full.json +0 -38
- data/spec/fixtures/issues.json +0 -1562
- data/spec/fixtures/label.json +0 -5
- data/spec/fixtures/labels.json +0 -17
- data/spec/fixtures/languages.json +0 -5
- data/spec/fixtures/legacy/issues.json +0 -49
- data/spec/fixtures/legacy/repositories.json +0 -173
- data/spec/fixtures/legacy/users.json +0 -24
- data/spec/fixtures/list_commit_comments.json +0 -572
- data/spec/fixtures/markdown_gfm +0 -1
- data/spec/fixtures/merge.json +0 -47
- data/spec/fixtures/milestone.json +0 -11
- data/spec/fixtures/milestones.json +0 -28
- data/spec/fixtures/not_found.json +0 -3
- data/spec/fixtures/notification_thread.json +0 -32
- data/spec/fixtures/notifications.json +0 -32
- data/spec/fixtures/org_issues.json +0 -710
- data/spec/fixtures/organization-repositories.json +0 -4292
- data/spec/fixtures/organization-repository.json +0 -42
- data/spec/fixtures/organization.json +0 -18
- data/spec/fixtures/organization_events.json +0 -61
- data/spec/fixtures/organization_members.json +0 -576
- data/spec/fixtures/organization_public_events.json +0 -61
- data/spec/fixtures/organization_team_members.json +0 -16
- data/spec/fixtures/organization_team_repos.json +0 -62
- data/spec/fixtures/organizations.json +0 -44
- data/spec/fixtures/participation_stats.json +0 -110
- data/spec/fixtures/public_events.json +0 -1104
- data/spec/fixtures/public_gists.json +0 -968
- data/spec/fixtures/public_key.json +0 -5
- data/spec/fixtures/public_key_update.json +0 -5
- data/spec/fixtures/public_keys.json +0 -7
- data/spec/fixtures/pull_created.json +0 -138
- data/spec/fixtures/pull_request.json +0 -138
- data/spec/fixtures/pull_request_comment.json +0 -35
- data/spec/fixtures/pull_request_comment_create.json +0 -35
- data/spec/fixtures/pull_request_comment_reply.json +0 -35
- data/spec/fixtures/pull_request_comment_update.json +0 -35
- data/spec/fixtures/pull_request_comments.json +0 -35
- data/spec/fixtures/pull_request_commits.json +0 -45
- data/spec/fixtures/pull_request_files.json +0 -35
- data/spec/fixtures/pull_request_merged.json +0 -5
- data/spec/fixtures/pull_requests.json +0 -187
- data/spec/fixtures/pull_requests_comments.json +0 -82
- data/spec/fixtures/pull_update.json +0 -138
- data/spec/fixtures/punch_card_stats.json +0 -842
- data/spec/fixtures/readme.json +0 -14
- data/spec/fixtures/ref.json +0 -9
- data/spec/fixtures/ref_create.json +0 -29
- data/spec/fixtures/ref_update.json +0 -11
- data/spec/fixtures/refs.json +0 -38
- data/spec/fixtures/refs_tags.json +0 -29
- data/spec/fixtures/repo_assignees.json +0 -30
- data/spec/fixtures/repo_events.json +0 -1652
- data/spec/fixtures/repo_issues_events.json +0 -128
- data/spec/fixtures/repositories.json +0 -872
- data/spec/fixtures/repository.json +0 -34
- data/spec/fixtures/repository_issues_comments.json +0 -52
- data/spec/fixtures/repository_network_events.json +0 -155
- data/spec/fixtures/repository_notifications.json +0 -32
- data/spec/fixtures/say.txt +0 -22
- data/spec/fixtures/say_custom.txt +0 -22
- data/spec/fixtures/stargazers.json +0 -212
- data/spec/fixtures/starred.json +0 -1114
- data/spec/fixtures/starred_gists.json +0 -30
- data/spec/fixtures/status.json +0 -16
- data/spec/fixtures/statuses.json +0 -34
- data/spec/fixtures/subscribers.json +0 -9
- data/spec/fixtures/subscription.json +0 -8
- data/spec/fixtures/subscription_update.json +0 -8
- data/spec/fixtures/subscriptions.json +0 -39
- data/spec/fixtures/tag.json +0 -16
- data/spec/fixtures/tag_create.json +0 -16
- data/spec/fixtures/tags.json +0 -173
- data/spec/fixtures/team.json +0 -8
- data/spec/fixtures/teams.json +0 -12
- data/spec/fixtures/thread_subscription.json +0 -8
- data/spec/fixtures/thread_subscription_update.json +0 -8
- data/spec/fixtures/tree.json +0 -112
- data/spec/fixtures/tree_create.json +0 -14
- data/spec/fixtures/update_content.json +0 -44
- data/spec/fixtures/user_events.json +0 -101
- data/spec/fixtures/user_issues.json +0 -710
- data/spec/fixtures/user_performed_public_events.json +0 -78
- data/spec/fixtures/user_public_events.json +0 -78
- data/spec/fixtures/validation_failed.json +0 -11
- data/spec/fixtures/watched.json +0 -1022
- data/spec/fixtures/watchers.json +0 -182
- data/spec/octokit/client/github_spec.rb +0 -19
- data/spec/octokit/client/issue_events_spec.rb +0 -30
- data/spec/octokit/client/pub_sub_hubbub/service_hooks_spec.rb +0 -48
- data/spec/octokit/client/pulls_spec.rb +0 -210
@@ -1,4292 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"clone_url": "https://github.com/codeforamerica/cfahelloworld.git",
|
4
|
-
"created_at": "2010-10-06T23:17:15Z",
|
5
|
-
"description": "Hello World Training",
|
6
|
-
"fork": false,
|
7
|
-
"forks": 1,
|
8
|
-
"git_url": "git://github.com/codeforamerica/cfahelloworld.git",
|
9
|
-
"homepage": "cfahello.heroku.com",
|
10
|
-
"html_url": "https://github.com/codeforamerica/cfahelloworld",
|
11
|
-
"id": 967930,
|
12
|
-
"language": null,
|
13
|
-
"master_branch": null,
|
14
|
-
"name": "cfahelloworld",
|
15
|
-
"open_issues": 0,
|
16
|
-
"owner": {
|
17
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
18
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
19
|
-
"id": 337792,
|
20
|
-
"login": "codeforamerica",
|
21
|
-
"url": "https://api.github.com/users/codeforamerica"
|
22
|
-
},
|
23
|
-
"private": false,
|
24
|
-
"pushed_at": null,
|
25
|
-
"size": 0,
|
26
|
-
"ssh_url": "git@github.com:codeforamerica/cfahelloworld.git",
|
27
|
-
"svn_url": "https://github.com/codeforamerica/cfahelloworld",
|
28
|
-
"updated_at": "2011-10-04T03:27:01Z",
|
29
|
-
"url": "https://api.github.com/repos/codeforamerica/cfahelloworld",
|
30
|
-
"watchers": 1
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"clone_url": "https://github.com/codeforamerica/shortstack.git",
|
34
|
-
"created_at": "2010-11-05T16:27:03Z",
|
35
|
-
"description": "Inspired by Crunchbase, ShortStack is the CfA database for public software, products and government entities",
|
36
|
-
"fork": false,
|
37
|
-
"forks": 7,
|
38
|
-
"git_url": "git://github.com/codeforamerica/shortstack.git",
|
39
|
-
"homepage": "shortstack.codeforamerica.org",
|
40
|
-
"html_url": "https://github.com/codeforamerica/shortstack",
|
41
|
-
"id": 1054616,
|
42
|
-
"language": "JavaScript",
|
43
|
-
"master_branch": null,
|
44
|
-
"name": "shortstack",
|
45
|
-
"open_issues": 0,
|
46
|
-
"owner": {
|
47
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
48
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
49
|
-
"id": 337792,
|
50
|
-
"login": "codeforamerica",
|
51
|
-
"url": "https://api.github.com/users/codeforamerica"
|
52
|
-
},
|
53
|
-
"private": false,
|
54
|
-
"pushed_at": "2011-10-10T14:26:12Z",
|
55
|
-
"size": 156,
|
56
|
-
"ssh_url": "git@github.com:codeforamerica/shortstack.git",
|
57
|
-
"svn_url": "https://github.com/codeforamerica/shortstack",
|
58
|
-
"updated_at": "2011-11-01T19:50:48Z",
|
59
|
-
"url": "https://api.github.com/repos/codeforamerica/shortstack",
|
60
|
-
"watchers": 16
|
61
|
-
},
|
62
|
-
{
|
63
|
-
"clone_url": "https://github.com/codeforamerica/cfawp2012.git",
|
64
|
-
"created_at": "2010-12-10T19:27:42Z",
|
65
|
-
"description": "Wordpress template for CfA site redesign",
|
66
|
-
"fork": false,
|
67
|
-
"forks": 3,
|
68
|
-
"git_url": "git://github.com/codeforamerica/cfawp2012.git",
|
69
|
-
"homepage": "",
|
70
|
-
"html_url": "https://github.com/codeforamerica/cfawp2012",
|
71
|
-
"id": 1156985,
|
72
|
-
"language": "PHP",
|
73
|
-
"master_branch": null,
|
74
|
-
"name": "cfawp2012",
|
75
|
-
"open_issues": 0,
|
76
|
-
"owner": {
|
77
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
78
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
79
|
-
"id": 337792,
|
80
|
-
"login": "codeforamerica",
|
81
|
-
"url": "https://api.github.com/users/codeforamerica"
|
82
|
-
},
|
83
|
-
"private": false,
|
84
|
-
"pushed_at": "2011-12-14T05:25:33Z",
|
85
|
-
"size": 132,
|
86
|
-
"ssh_url": "git@github.com:codeforamerica/cfawp2012.git",
|
87
|
-
"svn_url": "https://github.com/codeforamerica/cfawp2012",
|
88
|
-
"updated_at": "2011-12-14T05:25:33Z",
|
89
|
-
"url": "https://api.github.com/repos/codeforamerica/cfawp2012",
|
90
|
-
"watchers": 5
|
91
|
-
},
|
92
|
-
{
|
93
|
-
"clone_url": "https://github.com/codeforamerica/Open311-Visualization.git",
|
94
|
-
"created_at": "2011-01-14T02:13:21Z",
|
95
|
-
"description": "Code for America labs project visualizing Open311 data",
|
96
|
-
"fork": false,
|
97
|
-
"forks": 1,
|
98
|
-
"git_url": "git://github.com/codeforamerica/Open311-Visualization.git",
|
99
|
-
"homepage": "http://www.codeforamerica.org",
|
100
|
-
"html_url": "https://github.com/codeforamerica/Open311-Visualization",
|
101
|
-
"id": 1253100,
|
102
|
-
"language": "JavaScript",
|
103
|
-
"master_branch": null,
|
104
|
-
"name": "Open311-Visualization",
|
105
|
-
"open_issues": 0,
|
106
|
-
"owner": {
|
107
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
108
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
109
|
-
"id": 337792,
|
110
|
-
"login": "codeforamerica",
|
111
|
-
"url": "https://api.github.com/users/codeforamerica"
|
112
|
-
},
|
113
|
-
"private": false,
|
114
|
-
"pushed_at": "2011-01-14T06:24:46Z",
|
115
|
-
"size": 304,
|
116
|
-
"ssh_url": "git@github.com:codeforamerica/Open311-Visualization.git",
|
117
|
-
"svn_url": "https://github.com/codeforamerica/Open311-Visualization",
|
118
|
-
"updated_at": "2011-12-05T22:48:24Z",
|
119
|
-
"url": "https://api.github.com/repos/codeforamerica/Open311-Visualization",
|
120
|
-
"watchers": 6
|
121
|
-
},
|
122
|
-
{
|
123
|
-
"clone_url": "https://github.com/codeforamerica/open311.git",
|
124
|
-
"created_at": "2011-01-14T18:02:22Z",
|
125
|
-
"description": "A Ruby wrapper for the Open311 API",
|
126
|
-
"fork": false,
|
127
|
-
"forks": 5,
|
128
|
-
"git_url": "git://github.com/codeforamerica/open311.git",
|
129
|
-
"homepage": "http://open311.org/",
|
130
|
-
"html_url": "https://github.com/codeforamerica/open311",
|
131
|
-
"id": 1255325,
|
132
|
-
"language": "Ruby",
|
133
|
-
"master_branch": null,
|
134
|
-
"name": "open311",
|
135
|
-
"open_issues": 0,
|
136
|
-
"owner": {
|
137
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
138
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
139
|
-
"id": 337792,
|
140
|
-
"login": "codeforamerica",
|
141
|
-
"url": "https://api.github.com/users/codeforamerica"
|
142
|
-
},
|
143
|
-
"private": false,
|
144
|
-
"pushed_at": "2011-11-02T10:23:28Z",
|
145
|
-
"size": 112,
|
146
|
-
"ssh_url": "git@github.com:codeforamerica/open311.git",
|
147
|
-
"svn_url": "https://github.com/codeforamerica/open311",
|
148
|
-
"updated_at": "2011-12-05T22:40:06Z",
|
149
|
-
"url": "https://api.github.com/repos/codeforamerica/open311",
|
150
|
-
"watchers": 17
|
151
|
-
},
|
152
|
-
{
|
153
|
-
"clone_url": "https://github.com/codeforamerica/follow-all.git",
|
154
|
-
"created_at": "2011-01-14T18:13:39Z",
|
155
|
-
"description": "Follow All allows you to select a Twitter list and follow all of its members.",
|
156
|
-
"fork": false,
|
157
|
-
"forks": 16,
|
158
|
-
"git_url": "git://github.com/codeforamerica/follow-all.git",
|
159
|
-
"homepage": "http://follow-all.heroku.com",
|
160
|
-
"html_url": "https://github.com/codeforamerica/follow-all",
|
161
|
-
"id": 1255356,
|
162
|
-
"language": "Ruby",
|
163
|
-
"master_branch": null,
|
164
|
-
"name": "follow-all",
|
165
|
-
"open_issues": 6,
|
166
|
-
"owner": {
|
167
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
168
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
169
|
-
"id": 337792,
|
170
|
-
"login": "codeforamerica",
|
171
|
-
"url": "https://api.github.com/users/codeforamerica"
|
172
|
-
},
|
173
|
-
"private": false,
|
174
|
-
"pushed_at": "2012-01-02T20:41:46Z",
|
175
|
-
"size": 136,
|
176
|
-
"ssh_url": "git@github.com:codeforamerica/follow-all.git",
|
177
|
-
"svn_url": "https://github.com/codeforamerica/follow-all",
|
178
|
-
"updated_at": "2012-01-02T20:41:47Z",
|
179
|
-
"url": "https://api.github.com/repos/codeforamerica/follow-all",
|
180
|
-
"watchers": 19
|
181
|
-
},
|
182
|
-
{
|
183
|
-
"clone_url": "https://github.com/codeforamerica/gollum.git",
|
184
|
-
"created_at": "2011-01-19T00:12:45Z",
|
185
|
-
"description": "A simple, Git-powered wiki with a sweet API and local frontend.",
|
186
|
-
"fork": true,
|
187
|
-
"forks": 0,
|
188
|
-
"git_url": "git://github.com/codeforamerica/gollum.git",
|
189
|
-
"homepage": "",
|
190
|
-
"html_url": "https://github.com/codeforamerica/gollum",
|
191
|
-
"id": 1269209,
|
192
|
-
"language": "JavaScript",
|
193
|
-
"master_branch": null,
|
194
|
-
"name": "gollum",
|
195
|
-
"open_issues": 0,
|
196
|
-
"owner": {
|
197
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
198
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
199
|
-
"id": 337792,
|
200
|
-
"login": "codeforamerica",
|
201
|
-
"url": "https://api.github.com/users/codeforamerica"
|
202
|
-
},
|
203
|
-
"private": false,
|
204
|
-
"pushed_at": "2011-05-15T18:21:23Z",
|
205
|
-
"size": 4112,
|
206
|
-
"ssh_url": "git@github.com:codeforamerica/gollum.git",
|
207
|
-
"svn_url": "https://github.com/codeforamerica/gollum",
|
208
|
-
"updated_at": "2011-10-04T04:58:50Z",
|
209
|
-
"url": "https://api.github.com/repos/codeforamerica/gollum",
|
210
|
-
"watchers": 1
|
211
|
-
},
|
212
|
-
{
|
213
|
-
"clone_url": "https://github.com/codeforamerica/svg_canvas_experiments.git",
|
214
|
-
"created_at": "2011-01-20T22:10:11Z",
|
215
|
-
"description": "Playing w/ svg & canvas",
|
216
|
-
"fork": true,
|
217
|
-
"forks": 0,
|
218
|
-
"git_url": "git://github.com/codeforamerica/svg_canvas_experiments.git",
|
219
|
-
"homepage": "",
|
220
|
-
"html_url": "https://github.com/codeforamerica/svg_canvas_experiments",
|
221
|
-
"id": 1276305,
|
222
|
-
"language": "JavaScript",
|
223
|
-
"master_branch": null,
|
224
|
-
"name": "svg_canvas_experiments",
|
225
|
-
"open_issues": 0,
|
226
|
-
"owner": {
|
227
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
228
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
229
|
-
"id": 337792,
|
230
|
-
"login": "codeforamerica",
|
231
|
-
"url": "https://api.github.com/users/codeforamerica"
|
232
|
-
},
|
233
|
-
"private": false,
|
234
|
-
"pushed_at": "2011-01-21T18:12:30Z",
|
235
|
-
"size": 164,
|
236
|
-
"ssh_url": "git@github.com:codeforamerica/svg_canvas_experiments.git",
|
237
|
-
"svn_url": "https://github.com/codeforamerica/svg_canvas_experiments",
|
238
|
-
"updated_at": "2011-10-04T05:01:02Z",
|
239
|
-
"url": "https://api.github.com/repos/codeforamerica/svg_canvas_experiments",
|
240
|
-
"watchers": 1
|
241
|
-
},
|
242
|
-
{
|
243
|
-
"clone_url": "https://github.com/codeforamerica/adopt-a-hydrant.git",
|
244
|
-
"created_at": "2011-02-14T18:28:03Z",
|
245
|
-
"description": "A Ruby on Rails application that allows citizens to \"adopt\" civic infrastructure, such as fire hydrants.",
|
246
|
-
"fork": false,
|
247
|
-
"forks": 7,
|
248
|
-
"git_url": "git://github.com/codeforamerica/adopt-a-hydrant.git",
|
249
|
-
"homepage": "http://adopt-a-hydrant.heroku.com",
|
250
|
-
"html_url": "https://github.com/codeforamerica/adopt-a-hydrant",
|
251
|
-
"id": 1366239,
|
252
|
-
"language": "Ruby",
|
253
|
-
"master_branch": null,
|
254
|
-
"name": "adopt-a-hydrant",
|
255
|
-
"open_issues": 0,
|
256
|
-
"owner": {
|
257
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
258
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
259
|
-
"id": 337792,
|
260
|
-
"login": "codeforamerica",
|
261
|
-
"url": "https://api.github.com/users/codeforamerica"
|
262
|
-
},
|
263
|
-
"private": false,
|
264
|
-
"pushed_at": "2012-01-03T08:29:17Z",
|
265
|
-
"size": 144,
|
266
|
-
"ssh_url": "git@github.com:codeforamerica/adopt-a-hydrant.git",
|
267
|
-
"svn_url": "https://github.com/codeforamerica/adopt-a-hydrant",
|
268
|
-
"updated_at": "2012-01-03T08:29:17Z",
|
269
|
-
"url": "https://api.github.com/repos/codeforamerica/adopt-a-hydrant",
|
270
|
-
"watchers": 22
|
271
|
-
},
|
272
|
-
{
|
273
|
-
"clone_url": "https://github.com/codeforamerica/secretsauce.git",
|
274
|
-
"created_at": "2011-02-23T21:24:37Z",
|
275
|
-
"description": "Secret Sauce is a tool to help collect user interview research into a taggable, searchable and role-based system. \u00a0Our goal for Secret Sauce is aiding any team in generating understandable and archivable text-based user research that can inform product development.",
|
276
|
-
"fork": false,
|
277
|
-
"forks": 3,
|
278
|
-
"git_url": "git://github.com/codeforamerica/secretsauce.git",
|
279
|
-
"homepage": "",
|
280
|
-
"html_url": "https://github.com/codeforamerica/secretsauce",
|
281
|
-
"id": 1404037,
|
282
|
-
"language": "Ruby",
|
283
|
-
"master_branch": null,
|
284
|
-
"name": "secretsauce",
|
285
|
-
"open_issues": 0,
|
286
|
-
"owner": {
|
287
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
288
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
289
|
-
"id": 337792,
|
290
|
-
"login": "codeforamerica",
|
291
|
-
"url": "https://api.github.com/users/codeforamerica"
|
292
|
-
},
|
293
|
-
"private": false,
|
294
|
-
"pushed_at": "2011-11-17T03:41:02Z",
|
295
|
-
"size": 136,
|
296
|
-
"ssh_url": "git@github.com:codeforamerica/secretsauce.git",
|
297
|
-
"svn_url": "https://github.com/codeforamerica/secretsauce",
|
298
|
-
"updated_at": "2011-11-17T03:41:03Z",
|
299
|
-
"url": "https://api.github.com/repos/codeforamerica/secretsauce",
|
300
|
-
"watchers": 8
|
301
|
-
},
|
302
|
-
{
|
303
|
-
"clone_url": "https://github.com/codeforamerica/datalogue.git",
|
304
|
-
"created_at": "2011-03-02T01:19:54Z",
|
305
|
-
"description": "Civic API Data Catalog",
|
306
|
-
"fork": false,
|
307
|
-
"forks": 1,
|
308
|
-
"git_url": "git://github.com/codeforamerica/datalogue.git",
|
309
|
-
"homepage": "",
|
310
|
-
"html_url": "https://github.com/codeforamerica/datalogue",
|
311
|
-
"id": 1428772,
|
312
|
-
"language": "Ruby",
|
313
|
-
"master_branch": null,
|
314
|
-
"name": "datalogue",
|
315
|
-
"open_issues": 0,
|
316
|
-
"owner": {
|
317
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
318
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
319
|
-
"id": 337792,
|
320
|
-
"login": "codeforamerica",
|
321
|
-
"url": "https://api.github.com/users/codeforamerica"
|
322
|
-
},
|
323
|
-
"private": false,
|
324
|
-
"pushed_at": "2011-03-02T01:20:08Z",
|
325
|
-
"size": 744,
|
326
|
-
"ssh_url": "git@github.com:codeforamerica/datalogue.git",
|
327
|
-
"svn_url": "https://github.com/codeforamerica/datalogue",
|
328
|
-
"updated_at": "2011-10-04T05:49:00Z",
|
329
|
-
"url": "https://api.github.com/repos/codeforamerica/datalogue",
|
330
|
-
"watchers": 1
|
331
|
-
},
|
332
|
-
{
|
333
|
-
"clone_url": "https://github.com/codeforamerica/open311dashboard.git",
|
334
|
-
"created_at": "2011-03-04T22:56:28Z",
|
335
|
-
"description": "Visualizing and analyzing Open311 data on one unified, customizable dashboard",
|
336
|
-
"fork": false,
|
337
|
-
"forks": 12,
|
338
|
-
"git_url": "git://github.com/codeforamerica/open311dashboard.git",
|
339
|
-
"homepage": "http://codeforamerica.org/?cfa_project=open311-dashboard",
|
340
|
-
"html_url": "https://github.com/codeforamerica/open311dashboard",
|
341
|
-
"id": 1441411,
|
342
|
-
"language": "Python",
|
343
|
-
"master_branch": null,
|
344
|
-
"name": "open311dashboard",
|
345
|
-
"open_issues": 4,
|
346
|
-
"owner": {
|
347
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
348
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
349
|
-
"id": 337792,
|
350
|
-
"login": "codeforamerica",
|
351
|
-
"url": "https://api.github.com/users/codeforamerica"
|
352
|
-
},
|
353
|
-
"private": false,
|
354
|
-
"pushed_at": "2011-10-11T05:23:36Z",
|
355
|
-
"size": 276,
|
356
|
-
"ssh_url": "git@github.com:codeforamerica/open311dashboard.git",
|
357
|
-
"svn_url": "https://github.com/codeforamerica/open311dashboard",
|
358
|
-
"updated_at": "2011-12-23T08:38:47Z",
|
359
|
-
"url": "https://api.github.com/repos/codeforamerica/open311dashboard",
|
360
|
-
"watchers": 40
|
361
|
-
},
|
362
|
-
{
|
363
|
-
"clone_url": "https://github.com/codeforamerica/designforamerica.git",
|
364
|
-
"created_at": "2011-03-07T21:17:25Z",
|
365
|
-
"description": "An online application for designers to give back to local governments and simultaneously build their portfolio.",
|
366
|
-
"fork": true,
|
367
|
-
"forks": 1,
|
368
|
-
"git_url": "git://github.com/codeforamerica/designforamerica.git",
|
369
|
-
"homepage": "",
|
370
|
-
"html_url": "https://github.com/codeforamerica/designforamerica",
|
371
|
-
"id": 1451969,
|
372
|
-
"language": "Ruby",
|
373
|
-
"master_branch": null,
|
374
|
-
"name": "designforamerica",
|
375
|
-
"open_issues": 0,
|
376
|
-
"owner": {
|
377
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
378
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
379
|
-
"id": 337792,
|
380
|
-
"login": "codeforamerica",
|
381
|
-
"url": "https://api.github.com/users/codeforamerica"
|
382
|
-
},
|
383
|
-
"private": false,
|
384
|
-
"pushed_at": "2011-06-20T19:17:17Z",
|
385
|
-
"size": 1764,
|
386
|
-
"ssh_url": "git@github.com:codeforamerica/designforamerica.git",
|
387
|
-
"svn_url": "https://github.com/codeforamerica/designforamerica",
|
388
|
-
"updated_at": "2011-12-05T22:44:17Z",
|
389
|
-
"url": "https://api.github.com/repos/codeforamerica/designforamerica",
|
390
|
-
"watchers": 13
|
391
|
-
},
|
392
|
-
{
|
393
|
-
"clone_url": "https://github.com/codeforamerica/tipster.git",
|
394
|
-
"created_at": "2011-03-07T23:15:13Z",
|
395
|
-
"description": "PPD Tip Submission App",
|
396
|
-
"fork": false,
|
397
|
-
"forks": 4,
|
398
|
-
"git_url": "git://github.com/codeforamerica/tipster.git",
|
399
|
-
"homepage": "",
|
400
|
-
"html_url": "https://github.com/codeforamerica/tipster",
|
401
|
-
"id": 1452417,
|
402
|
-
"language": "Ruby",
|
403
|
-
"master_branch": null,
|
404
|
-
"name": "tipster",
|
405
|
-
"open_issues": 0,
|
406
|
-
"owner": {
|
407
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
408
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
409
|
-
"id": 337792,
|
410
|
-
"login": "codeforamerica",
|
411
|
-
"url": "https://api.github.com/users/codeforamerica"
|
412
|
-
},
|
413
|
-
"private": false,
|
414
|
-
"pushed_at": "2011-03-25T17:15:49Z",
|
415
|
-
"size": 1728,
|
416
|
-
"ssh_url": "git@github.com:codeforamerica/tipster.git",
|
417
|
-
"svn_url": "https://github.com/codeforamerica/tipster",
|
418
|
-
"updated_at": "2011-11-09T17:40:43Z",
|
419
|
-
"url": "https://api.github.com/repos/codeforamerica/tipster",
|
420
|
-
"watchers": 6
|
421
|
-
},
|
422
|
-
{
|
423
|
-
"clone_url": "https://github.com/codeforamerica/georuby.git",
|
424
|
-
"created_at": "2011-03-08T01:04:58Z",
|
425
|
-
"description": "Fork with some extras",
|
426
|
-
"fork": true,
|
427
|
-
"forks": 0,
|
428
|
-
"git_url": "git://github.com/codeforamerica/georuby.git",
|
429
|
-
"homepage": "",
|
430
|
-
"html_url": "https://github.com/codeforamerica/georuby",
|
431
|
-
"id": 1452735,
|
432
|
-
"language": "Ruby",
|
433
|
-
"master_branch": null,
|
434
|
-
"name": "georuby",
|
435
|
-
"open_issues": 0,
|
436
|
-
"owner": {
|
437
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
438
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
439
|
-
"id": 337792,
|
440
|
-
"login": "codeforamerica",
|
441
|
-
"url": "https://api.github.com/users/codeforamerica"
|
442
|
-
},
|
443
|
-
"private": false,
|
444
|
-
"pushed_at": "2011-03-12T01:26:32Z",
|
445
|
-
"size": 964,
|
446
|
-
"ssh_url": "git@github.com:codeforamerica/georuby.git",
|
447
|
-
"svn_url": "https://github.com/codeforamerica/georuby",
|
448
|
-
"updated_at": "2011-10-04T05:56:37Z",
|
449
|
-
"url": "https://api.github.com/repos/codeforamerica/georuby",
|
450
|
-
"watchers": 1
|
451
|
-
},
|
452
|
-
{
|
453
|
-
"clone_url": "https://github.com/codeforamerica/gem_template.git",
|
454
|
-
"created_at": "2011-03-19T22:46:19Z",
|
455
|
-
"description": "The Code for America RubyGem template",
|
456
|
-
"fork": false,
|
457
|
-
"forks": 4,
|
458
|
-
"git_url": "git://github.com/codeforamerica/gem_template.git",
|
459
|
-
"homepage": "http://codeforamerica.org/",
|
460
|
-
"html_url": "https://github.com/codeforamerica/gem_template",
|
461
|
-
"id": 1501475,
|
462
|
-
"language": "Ruby",
|
463
|
-
"master_branch": null,
|
464
|
-
"name": "gem_template",
|
465
|
-
"open_issues": 0,
|
466
|
-
"owner": {
|
467
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
468
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
469
|
-
"id": 337792,
|
470
|
-
"login": "codeforamerica",
|
471
|
-
"url": "https://api.github.com/users/codeforamerica"
|
472
|
-
},
|
473
|
-
"private": false,
|
474
|
-
"pushed_at": "2011-12-12T15:54:43Z",
|
475
|
-
"size": 112,
|
476
|
-
"ssh_url": "git@github.com:codeforamerica/gem_template.git",
|
477
|
-
"svn_url": "https://github.com/codeforamerica/gem_template",
|
478
|
-
"updated_at": "2011-12-12T15:54:43Z",
|
479
|
-
"url": "https://api.github.com/repos/codeforamerica/gem_template",
|
480
|
-
"watchers": 12
|
481
|
-
},
|
482
|
-
{
|
483
|
-
"clone_url": "https://github.com/codeforamerica/hubbuds.git",
|
484
|
-
"created_at": "2011-03-20T20:16:44Z",
|
485
|
-
"description": "",
|
486
|
-
"fork": false,
|
487
|
-
"forks": 3,
|
488
|
-
"git_url": "git://github.com/codeforamerica/hubbuds.git",
|
489
|
-
"homepage": "",
|
490
|
-
"html_url": "https://github.com/codeforamerica/hubbuds",
|
491
|
-
"id": 1504171,
|
492
|
-
"language": "Ruby",
|
493
|
-
"master_branch": null,
|
494
|
-
"name": "hubbuds",
|
495
|
-
"open_issues": 0,
|
496
|
-
"owner": {
|
497
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
498
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
499
|
-
"id": 337792,
|
500
|
-
"login": "codeforamerica",
|
501
|
-
"url": "https://api.github.com/users/codeforamerica"
|
502
|
-
},
|
503
|
-
"private": false,
|
504
|
-
"pushed_at": "2011-04-02T02:25:44Z",
|
505
|
-
"size": 1552,
|
506
|
-
"ssh_url": "git@github.com:codeforamerica/hubbuds.git",
|
507
|
-
"svn_url": "https://github.com/codeforamerica/hubbuds",
|
508
|
-
"updated_at": "2011-11-09T17:40:37Z",
|
509
|
-
"url": "https://api.github.com/repos/codeforamerica/hubbuds",
|
510
|
-
"watchers": 3
|
511
|
-
},
|
512
|
-
{
|
513
|
-
"clone_url": "https://github.com/codeforamerica/Twitter-Collage.git",
|
514
|
-
"created_at": "2011-03-22T18:54:55Z",
|
515
|
-
"description": "Twitter Collage project for Mozilla Firefox 4 Launch",
|
516
|
-
"fork": true,
|
517
|
-
"forks": 1,
|
518
|
-
"git_url": "git://github.com/codeforamerica/Twitter-Collage.git",
|
519
|
-
"homepage": "",
|
520
|
-
"html_url": "https://github.com/codeforamerica/Twitter-Collage",
|
521
|
-
"id": 1512726,
|
522
|
-
"language": "PHP",
|
523
|
-
"master_branch": null,
|
524
|
-
"name": "Twitter-Collage",
|
525
|
-
"open_issues": 0,
|
526
|
-
"owner": {
|
527
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
528
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
529
|
-
"id": 337792,
|
530
|
-
"login": "codeforamerica",
|
531
|
-
"url": "https://api.github.com/users/codeforamerica"
|
532
|
-
},
|
533
|
-
"private": false,
|
534
|
-
"pushed_at": "2011-06-28T06:57:31Z",
|
535
|
-
"size": 636,
|
536
|
-
"ssh_url": "git@github.com:codeforamerica/Twitter-Collage.git",
|
537
|
-
"svn_url": "https://github.com/codeforamerica/Twitter-Collage",
|
538
|
-
"updated_at": "2011-10-04T06:16:28Z",
|
539
|
-
"url": "https://api.github.com/repos/codeforamerica/Twitter-Collage",
|
540
|
-
"watchers": 3
|
541
|
-
},
|
542
|
-
{
|
543
|
-
"clone_url": "https://github.com/codeforamerica/flocky.git",
|
544
|
-
"created_at": "2011-03-23T03:02:35Z",
|
545
|
-
"description": "private or public group text messaging and push notifications rubygem",
|
546
|
-
"fork": false,
|
547
|
-
"forks": 3,
|
548
|
-
"git_url": "git://github.com/codeforamerica/flocky.git",
|
549
|
-
"homepage": "",
|
550
|
-
"html_url": "https://github.com/codeforamerica/flocky",
|
551
|
-
"id": 1514682,
|
552
|
-
"language": "Ruby",
|
553
|
-
"master_branch": null,
|
554
|
-
"name": "flocky",
|
555
|
-
"open_issues": 0,
|
556
|
-
"owner": {
|
557
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
558
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
559
|
-
"id": 337792,
|
560
|
-
"login": "codeforamerica",
|
561
|
-
"url": "https://api.github.com/users/codeforamerica"
|
562
|
-
},
|
563
|
-
"private": false,
|
564
|
-
"pushed_at": "2011-04-08T00:28:10Z",
|
565
|
-
"size": 1336,
|
566
|
-
"ssh_url": "git@github.com:codeforamerica/flocky.git",
|
567
|
-
"svn_url": "https://github.com/codeforamerica/flocky",
|
568
|
-
"updated_at": "2011-11-09T17:40:33Z",
|
569
|
-
"url": "https://api.github.com/repos/codeforamerica/flocky",
|
570
|
-
"watchers": 7
|
571
|
-
},
|
572
|
-
{
|
573
|
-
"clone_url": "https://github.com/codeforamerica/councilmatic.git",
|
574
|
-
"created_at": "2011-03-24T05:18:10Z",
|
575
|
-
"description": "Philadelphia City Council Legislative Information",
|
576
|
-
"fork": true,
|
577
|
-
"forks": 3,
|
578
|
-
"git_url": "git://github.com/codeforamerica/councilmatic.git",
|
579
|
-
"homepage": "",
|
580
|
-
"html_url": "https://github.com/codeforamerica/councilmatic",
|
581
|
-
"id": 1519697,
|
582
|
-
"language": "Python",
|
583
|
-
"master_branch": null,
|
584
|
-
"name": "councilmatic",
|
585
|
-
"open_issues": 12,
|
586
|
-
"owner": {
|
587
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
588
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
589
|
-
"id": 337792,
|
590
|
-
"login": "codeforamerica",
|
591
|
-
"url": "https://api.github.com/users/codeforamerica"
|
592
|
-
},
|
593
|
-
"private": false,
|
594
|
-
"pushed_at": "2011-12-06T11:02:27Z",
|
595
|
-
"size": 120,
|
596
|
-
"ssh_url": "git@github.com:codeforamerica/councilmatic.git",
|
597
|
-
"svn_url": "https://github.com/codeforamerica/councilmatic",
|
598
|
-
"updated_at": "2011-12-06T16:14:27Z",
|
599
|
-
"url": "https://api.github.com/repos/codeforamerica/councilmatic",
|
600
|
-
"watchers": 9
|
601
|
-
},
|
602
|
-
{
|
603
|
-
"clone_url": "https://github.com/codeforamerica/classtalk.git",
|
604
|
-
"created_at": "2011-03-25T17:23:59Z",
|
605
|
-
"description": "",
|
606
|
-
"fork": false,
|
607
|
-
"forks": 10,
|
608
|
-
"git_url": "git://github.com/codeforamerica/classtalk.git",
|
609
|
-
"homepage": "",
|
610
|
-
"html_url": "https://github.com/codeforamerica/classtalk",
|
611
|
-
"id": 1526448,
|
612
|
-
"language": "JavaScript",
|
613
|
-
"master_branch": null,
|
614
|
-
"name": "classtalk",
|
615
|
-
"open_issues": 8,
|
616
|
-
"owner": {
|
617
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
618
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
619
|
-
"id": 337792,
|
620
|
-
"login": "codeforamerica",
|
621
|
-
"url": "https://api.github.com/users/codeforamerica"
|
622
|
-
},
|
623
|
-
"private": false,
|
624
|
-
"pushed_at": "2011-12-29T19:41:31Z",
|
625
|
-
"size": 136,
|
626
|
-
"ssh_url": "git@github.com:codeforamerica/classtalk.git",
|
627
|
-
"svn_url": "https://github.com/codeforamerica/classtalk",
|
628
|
-
"updated_at": "2011-12-29T19:41:32Z",
|
629
|
-
"url": "https://api.github.com/repos/codeforamerica/classtalk",
|
630
|
-
"watchers": 20
|
631
|
-
},
|
632
|
-
{
|
633
|
-
"clone_url": "https://github.com/codeforamerica/2010BasicCensusMap.git",
|
634
|
-
"created_at": "2011-03-26T00:30:17Z",
|
635
|
-
"description": "Census Map data from 2010 using ESRI Data Sources",
|
636
|
-
"fork": true,
|
637
|
-
"forks": 0,
|
638
|
-
"git_url": "git://github.com/codeforamerica/2010BasicCensusMap.git",
|
639
|
-
"homepage": "http://censusmap.apphb.com/",
|
640
|
-
"html_url": "https://github.com/codeforamerica/2010BasicCensusMap",
|
641
|
-
"id": 1527884,
|
642
|
-
"language": "C#",
|
643
|
-
"master_branch": null,
|
644
|
-
"name": "2010BasicCensusMap",
|
645
|
-
"open_issues": 0,
|
646
|
-
"owner": {
|
647
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
648
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
649
|
-
"id": 337792,
|
650
|
-
"login": "codeforamerica",
|
651
|
-
"url": "https://api.github.com/users/codeforamerica"
|
652
|
-
},
|
653
|
-
"private": false,
|
654
|
-
"pushed_at": "2011-04-03T21:38:25Z",
|
655
|
-
"size": 9276,
|
656
|
-
"ssh_url": "git@github.com:codeforamerica/2010BasicCensusMap.git",
|
657
|
-
"svn_url": "https://github.com/codeforamerica/2010BasicCensusMap",
|
658
|
-
"updated_at": "2011-10-04T13:41:23Z",
|
659
|
-
"url": "https://api.github.com/repos/codeforamerica/2010BasicCensusMap",
|
660
|
-
"watchers": 1
|
661
|
-
},
|
662
|
-
{
|
663
|
-
"clone_url": "https://github.com/codeforamerica/cfa-drupal-template.git",
|
664
|
-
"created_at": "2011-03-30T00:28:48Z",
|
665
|
-
"description": "A Drupal template for Drupal-based sites at Code for America",
|
666
|
-
"fork": false,
|
667
|
-
"forks": 2,
|
668
|
-
"git_url": "git://github.com/codeforamerica/cfa-drupal-template.git",
|
669
|
-
"homepage": "http://codeforamerica.org",
|
670
|
-
"html_url": "https://github.com/codeforamerica/cfa-drupal-template",
|
671
|
-
"id": 1544120,
|
672
|
-
"language": null,
|
673
|
-
"master_branch": null,
|
674
|
-
"name": "cfa-drupal-template",
|
675
|
-
"open_issues": 0,
|
676
|
-
"owner": {
|
677
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
678
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
679
|
-
"id": 337792,
|
680
|
-
"login": "codeforamerica",
|
681
|
-
"url": "https://api.github.com/users/codeforamerica"
|
682
|
-
},
|
683
|
-
"private": false,
|
684
|
-
"pushed_at": "2011-04-05T01:49:06Z",
|
685
|
-
"size": 292,
|
686
|
-
"ssh_url": "git@github.com:codeforamerica/cfa-drupal-template.git",
|
687
|
-
"svn_url": "https://github.com/codeforamerica/cfa-drupal-template",
|
688
|
-
"updated_at": "2011-10-04T13:47:16Z",
|
689
|
-
"url": "https://api.github.com/repos/codeforamerica/cfa-drupal-template",
|
690
|
-
"watchers": 3
|
691
|
-
},
|
692
|
-
{
|
693
|
-
"clone_url": "https://github.com/codeforamerica/wheresmyschoolbus.git",
|
694
|
-
"created_at": "2011-03-30T23:38:51Z",
|
695
|
-
"description": "jquery mobile + rails app that shows you where your school bus is",
|
696
|
-
"fork": false,
|
697
|
-
"forks": 3,
|
698
|
-
"git_url": "git://github.com/codeforamerica/wheresmyschoolbus.git",
|
699
|
-
"homepage": "",
|
700
|
-
"html_url": "https://github.com/codeforamerica/wheresmyschoolbus",
|
701
|
-
"id": 1548675,
|
702
|
-
"language": "JavaScript",
|
703
|
-
"master_branch": null,
|
704
|
-
"name": "wheresmyschoolbus",
|
705
|
-
"open_issues": 4,
|
706
|
-
"owner": {
|
707
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
708
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
709
|
-
"id": 337792,
|
710
|
-
"login": "codeforamerica",
|
711
|
-
"url": "https://api.github.com/users/codeforamerica"
|
712
|
-
},
|
713
|
-
"private": false,
|
714
|
-
"pushed_at": "2011-11-07T22:11:36Z",
|
715
|
-
"size": 1620,
|
716
|
-
"ssh_url": "git@github.com:codeforamerica/wheresmyschoolbus.git",
|
717
|
-
"svn_url": "https://github.com/codeforamerica/wheresmyschoolbus",
|
718
|
-
"updated_at": "2011-12-28T07:20:46Z",
|
719
|
-
"url": "https://api.github.com/repos/codeforamerica/wheresmyschoolbus",
|
720
|
-
"watchers": 10
|
721
|
-
},
|
722
|
-
{
|
723
|
-
"clone_url": "https://github.com/codeforamerica/cfa-drupal-example-module.git",
|
724
|
-
"created_at": "2011-04-04T22:29:04Z",
|
725
|
-
"description": "An example module for Code for America",
|
726
|
-
"fork": false,
|
727
|
-
"forks": 2,
|
728
|
-
"git_url": "git://github.com/codeforamerica/cfa-drupal-example-module.git",
|
729
|
-
"homepage": "http://codeforamerica.org",
|
730
|
-
"html_url": "https://github.com/codeforamerica/cfa-drupal-example-module",
|
731
|
-
"id": 1569522,
|
732
|
-
"language": null,
|
733
|
-
"master_branch": null,
|
734
|
-
"name": "cfa-drupal-example-module",
|
735
|
-
"open_issues": 0,
|
736
|
-
"owner": {
|
737
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
738
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
739
|
-
"id": 337792,
|
740
|
-
"login": "codeforamerica",
|
741
|
-
"url": "https://api.github.com/users/codeforamerica"
|
742
|
-
},
|
743
|
-
"private": false,
|
744
|
-
"pushed_at": "2011-04-05T01:27:05Z",
|
745
|
-
"size": 132,
|
746
|
-
"ssh_url": "git@github.com:codeforamerica/cfa-drupal-example-module.git",
|
747
|
-
"svn_url": "https://github.com/codeforamerica/cfa-drupal-example-module",
|
748
|
-
"updated_at": "2011-10-04T13:56:40Z",
|
749
|
-
"url": "https://api.github.com/repos/codeforamerica/cfa-drupal-example-module",
|
750
|
-
"watchers": 2
|
751
|
-
},
|
752
|
-
{
|
753
|
-
"clone_url": "https://github.com/codeforamerica/Wufoopress.git",
|
754
|
-
"created_at": "2011-04-07T04:41:51Z",
|
755
|
-
"description": "Wordpress plugin to pull wufoo entries",
|
756
|
-
"fork": false,
|
757
|
-
"forks": 1,
|
758
|
-
"git_url": "git://github.com/codeforamerica/Wufoopress.git",
|
759
|
-
"homepage": "",
|
760
|
-
"html_url": "https://github.com/codeforamerica/Wufoopress",
|
761
|
-
"id": 1580689,
|
762
|
-
"language": "PHP",
|
763
|
-
"master_branch": null,
|
764
|
-
"name": "Wufoopress",
|
765
|
-
"open_issues": 0,
|
766
|
-
"owner": {
|
767
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
768
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
769
|
-
"id": 337792,
|
770
|
-
"login": "codeforamerica",
|
771
|
-
"url": "https://api.github.com/users/codeforamerica"
|
772
|
-
},
|
773
|
-
"private": false,
|
774
|
-
"pushed_at": "2011-08-02T20:29:27Z",
|
775
|
-
"size": 460,
|
776
|
-
"ssh_url": "git@github.com:codeforamerica/Wufoopress.git",
|
777
|
-
"svn_url": "https://github.com/codeforamerica/Wufoopress",
|
778
|
-
"updated_at": "2011-10-04T14:01:03Z",
|
779
|
-
"url": "https://api.github.com/repos/codeforamerica/Wufoopress",
|
780
|
-
"watchers": 3
|
781
|
-
},
|
782
|
-
{
|
783
|
-
"clone_url": "https://github.com/codeforamerica/cfa_coder_sounds.git",
|
784
|
-
"created_at": "2011-04-09T00:19:27Z",
|
785
|
-
"description": "Sounds for Code for America Coders on GitHub Post Hooks (In House at CfA amd Campfire)",
|
786
|
-
"fork": false,
|
787
|
-
"forks": 10,
|
788
|
-
"git_url": "git://github.com/codeforamerica/cfa_coder_sounds.git",
|
789
|
-
"homepage": "",
|
790
|
-
"html_url": "https://github.com/codeforamerica/cfa_coder_sounds",
|
791
|
-
"id": 1589884,
|
792
|
-
"language": null,
|
793
|
-
"master_branch": null,
|
794
|
-
"name": "cfa_coder_sounds",
|
795
|
-
"open_issues": 0,
|
796
|
-
"owner": {
|
797
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
798
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
799
|
-
"id": 337792,
|
800
|
-
"login": "codeforamerica",
|
801
|
-
"url": "https://api.github.com/users/codeforamerica"
|
802
|
-
},
|
803
|
-
"private": false,
|
804
|
-
"pushed_at": "2011-12-16T00:17:23Z",
|
805
|
-
"size": 272,
|
806
|
-
"ssh_url": "git@github.com:codeforamerica/cfa_coder_sounds.git",
|
807
|
-
"svn_url": "https://github.com/codeforamerica/cfa_coder_sounds",
|
808
|
-
"updated_at": "2011-12-16T00:17:23Z",
|
809
|
-
"url": "https://api.github.com/repos/codeforamerica/cfa_coder_sounds",
|
810
|
-
"watchers": 16
|
811
|
-
},
|
812
|
-
{
|
813
|
-
"clone_url": "https://github.com/codeforamerica/engagement_toolkit.git",
|
814
|
-
"created_at": "2011-04-11T18:08:31Z",
|
815
|
-
"description": "The Engagement Toolkit",
|
816
|
-
"fork": false,
|
817
|
-
"forks": 1,
|
818
|
-
"git_url": "git://github.com/codeforamerica/engagement_toolkit.git",
|
819
|
-
"homepage": "",
|
820
|
-
"html_url": "https://github.com/codeforamerica/engagement_toolkit",
|
821
|
-
"id": 1600285,
|
822
|
-
"language": "PHP",
|
823
|
-
"master_branch": null,
|
824
|
-
"name": "engagement_toolkit",
|
825
|
-
"open_issues": 0,
|
826
|
-
"owner": {
|
827
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
828
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
829
|
-
"id": 337792,
|
830
|
-
"login": "codeforamerica",
|
831
|
-
"url": "https://api.github.com/users/codeforamerica"
|
832
|
-
},
|
833
|
-
"private": false,
|
834
|
-
"pushed_at": "2011-05-27T22:27:31Z",
|
835
|
-
"size": 14636,
|
836
|
-
"ssh_url": "git@github.com:codeforamerica/engagement_toolkit.git",
|
837
|
-
"svn_url": "https://github.com/codeforamerica/engagement_toolkit",
|
838
|
-
"updated_at": "2011-10-22T22:54:54Z",
|
839
|
-
"url": "https://api.github.com/repos/codeforamerica/engagement_toolkit",
|
840
|
-
"watchers": 3
|
841
|
-
},
|
842
|
-
{
|
843
|
-
"clone_url": "https://github.com/codeforamerica/Catalyze.git",
|
844
|
-
"created_at": "2011-04-11T23:33:53Z",
|
845
|
-
"description": "Catalyze is a civic matchmaking service. We make cities less stressful and more awesome.",
|
846
|
-
"fork": false,
|
847
|
-
"forks": 1,
|
848
|
-
"git_url": "git://github.com/codeforamerica/Catalyze.git",
|
849
|
-
"homepage": "",
|
850
|
-
"html_url": "https://github.com/codeforamerica/Catalyze",
|
851
|
-
"id": 1601681,
|
852
|
-
"language": "PHP",
|
853
|
-
"master_branch": null,
|
854
|
-
"name": "Catalyze",
|
855
|
-
"open_issues": 0,
|
856
|
-
"owner": {
|
857
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
858
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
859
|
-
"id": 337792,
|
860
|
-
"login": "codeforamerica",
|
861
|
-
"url": "https://api.github.com/users/codeforamerica"
|
862
|
-
},
|
863
|
-
"private": false,
|
864
|
-
"pushed_at": "2011-04-15T22:12:59Z",
|
865
|
-
"size": 3512,
|
866
|
-
"ssh_url": "git@github.com:codeforamerica/Catalyze.git",
|
867
|
-
"svn_url": "https://github.com/codeforamerica/Catalyze",
|
868
|
-
"updated_at": "2011-10-04T14:08:49Z",
|
869
|
-
"url": "https://api.github.com/repos/codeforamerica/Catalyze",
|
870
|
-
"watchers": 2
|
871
|
-
},
|
872
|
-
{
|
873
|
-
"clone_url": "https://github.com/codeforamerica/github_scream.git",
|
874
|
-
"created_at": "2011-04-12T18:17:38Z",
|
875
|
-
"description": "screams out a bloodcurdling hawk scream (or coder/project-specific sound) on every github push! fun for everyone!",
|
876
|
-
"fork": false,
|
877
|
-
"forks": 2,
|
878
|
-
"git_url": "git://github.com/codeforamerica/github_scream.git",
|
879
|
-
"homepage": "",
|
880
|
-
"html_url": "https://github.com/codeforamerica/github_scream",
|
881
|
-
"id": 1605468,
|
882
|
-
"language": "Ruby",
|
883
|
-
"master_branch": null,
|
884
|
-
"name": "github_scream",
|
885
|
-
"open_issues": 1,
|
886
|
-
"owner": {
|
887
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
888
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
889
|
-
"id": 337792,
|
890
|
-
"login": "codeforamerica",
|
891
|
-
"url": "https://api.github.com/users/codeforamerica"
|
892
|
-
},
|
893
|
-
"private": false,
|
894
|
-
"pushed_at": "2011-06-14T00:16:48Z",
|
895
|
-
"size": 1252,
|
896
|
-
"ssh_url": "git@github.com:codeforamerica/github_scream.git",
|
897
|
-
"svn_url": "https://github.com/codeforamerica/github_scream",
|
898
|
-
"updated_at": "2011-12-13T22:32:47Z",
|
899
|
-
"url": "https://api.github.com/repos/codeforamerica/github_scream",
|
900
|
-
"watchers": 5
|
901
|
-
},
|
902
|
-
{
|
903
|
-
"clone_url": "https://github.com/codeforamerica/muralapp.git",
|
904
|
-
"created_at": "2011-04-14T05:29:27Z",
|
905
|
-
"description": "Mobile application which adds an interactive layer to the thousands of murals in the City of Philadelphia Mural Arts Program.",
|
906
|
-
"fork": false,
|
907
|
-
"forks": 7,
|
908
|
-
"git_url": "git://github.com/codeforamerica/muralapp.git",
|
909
|
-
"homepage": "",
|
910
|
-
"html_url": "https://github.com/codeforamerica/muralapp",
|
911
|
-
"id": 1612856,
|
912
|
-
"language": "JavaScript",
|
913
|
-
"master_branch": null,
|
914
|
-
"name": "muralapp",
|
915
|
-
"open_issues": 4,
|
916
|
-
"owner": {
|
917
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
918
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
919
|
-
"id": 337792,
|
920
|
-
"login": "codeforamerica",
|
921
|
-
"url": "https://api.github.com/users/codeforamerica"
|
922
|
-
},
|
923
|
-
"private": false,
|
924
|
-
"pushed_at": "2011-10-03T22:59:44Z",
|
925
|
-
"size": 136,
|
926
|
-
"ssh_url": "git@github.com:codeforamerica/muralapp.git",
|
927
|
-
"svn_url": "https://github.com/codeforamerica/muralapp",
|
928
|
-
"updated_at": "2011-10-15T05:57:02Z",
|
929
|
-
"url": "https://api.github.com/repos/codeforamerica/muralapp",
|
930
|
-
"watchers": 13
|
931
|
-
},
|
932
|
-
{
|
933
|
-
"clone_url": "https://github.com/codeforamerica/transpochoices.git",
|
934
|
-
"created_at": "2011-04-15T23:37:19Z",
|
935
|
-
"description": "Make the best choice to get across town!",
|
936
|
-
"fork": false,
|
937
|
-
"forks": 5,
|
938
|
-
"git_url": "git://github.com/codeforamerica/transpochoices.git",
|
939
|
-
"homepage": "http://codeforamerica.org/?cfa_project=transportation-choices",
|
940
|
-
"html_url": "https://github.com/codeforamerica/transpochoices",
|
941
|
-
"id": 1621371,
|
942
|
-
"language": "JavaScript",
|
943
|
-
"master_branch": null,
|
944
|
-
"name": "transpochoices",
|
945
|
-
"open_issues": 10,
|
946
|
-
"owner": {
|
947
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
948
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
949
|
-
"id": 337792,
|
950
|
-
"login": "codeforamerica",
|
951
|
-
"url": "https://api.github.com/users/codeforamerica"
|
952
|
-
},
|
953
|
-
"private": false,
|
954
|
-
"pushed_at": "2011-10-11T05:43:06Z",
|
955
|
-
"size": 268,
|
956
|
-
"ssh_url": "git@github.com:codeforamerica/transpochoices.git",
|
957
|
-
"svn_url": "https://github.com/codeforamerica/transpochoices",
|
958
|
-
"updated_at": "2011-12-28T07:24:04Z",
|
959
|
-
"url": "https://api.github.com/repos/codeforamerica/transpochoices",
|
960
|
-
"watchers": 14
|
961
|
-
},
|
962
|
-
{
|
963
|
-
"clone_url": "https://github.com/codeforamerica/census2pgsql.git",
|
964
|
-
"created_at": "2011-04-16T02:03:55Z",
|
965
|
-
"description": "Scripts to import census data into a PostGIS database.",
|
966
|
-
"fork": false,
|
967
|
-
"forks": 2,
|
968
|
-
"git_url": "git://github.com/codeforamerica/census2pgsql.git",
|
969
|
-
"homepage": "",
|
970
|
-
"html_url": "https://github.com/codeforamerica/census2pgsql",
|
971
|
-
"id": 1621711,
|
972
|
-
"language": "Ruby",
|
973
|
-
"master_branch": null,
|
974
|
-
"name": "census2pgsql",
|
975
|
-
"open_issues": 1,
|
976
|
-
"owner": {
|
977
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
978
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
979
|
-
"id": 337792,
|
980
|
-
"login": "codeforamerica",
|
981
|
-
"url": "https://api.github.com/users/codeforamerica"
|
982
|
-
},
|
983
|
-
"private": false,
|
984
|
-
"pushed_at": "2011-05-27T22:28:33Z",
|
985
|
-
"size": 1288,
|
986
|
-
"ssh_url": "git@github.com:codeforamerica/census2pgsql.git",
|
987
|
-
"svn_url": "https://github.com/codeforamerica/census2pgsql",
|
988
|
-
"updated_at": "2011-11-09T21:14:18Z",
|
989
|
-
"url": "https://api.github.com/repos/codeforamerica/census2pgsql",
|
990
|
-
"watchers": 7
|
991
|
-
},
|
992
|
-
{
|
993
|
-
"clone_url": "https://github.com/codeforamerica/FCC-Python-Egg.git",
|
994
|
-
"created_at": "2011-04-16T22:01:01Z",
|
995
|
-
"description": "A Python wrapper for the FCC Reboot APIs.",
|
996
|
-
"fork": false,
|
997
|
-
"forks": 1,
|
998
|
-
"git_url": "git://github.com/codeforamerica/FCC-Python-Egg.git",
|
999
|
-
"homepage": "",
|
1000
|
-
"html_url": "https://github.com/codeforamerica/FCC-Python-Egg",
|
1001
|
-
"id": 1624504,
|
1002
|
-
"language": "Python",
|
1003
|
-
"master_branch": null,
|
1004
|
-
"name": "FCC-Python-Egg",
|
1005
|
-
"open_issues": 0,
|
1006
|
-
"owner": {
|
1007
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1008
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1009
|
-
"id": 337792,
|
1010
|
-
"login": "codeforamerica",
|
1011
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1012
|
-
},
|
1013
|
-
"private": false,
|
1014
|
-
"pushed_at": "2011-04-17T04:29:34Z",
|
1015
|
-
"size": 348,
|
1016
|
-
"ssh_url": "git@github.com:codeforamerica/FCC-Python-Egg.git",
|
1017
|
-
"svn_url": "https://github.com/codeforamerica/FCC-Python-Egg",
|
1018
|
-
"updated_at": "2011-10-04T14:17:34Z",
|
1019
|
-
"url": "https://api.github.com/repos/codeforamerica/FCC-Python-Egg",
|
1020
|
-
"watchers": 2
|
1021
|
-
},
|
1022
|
-
{
|
1023
|
-
"clone_url": "https://github.com/codeforamerica/fcc_reboot.git",
|
1024
|
-
"created_at": "2011-04-16T22:05:09Z",
|
1025
|
-
"description": "A Ruby wrapper for the FCC Reboot APIs.",
|
1026
|
-
"fork": false,
|
1027
|
-
"forks": 2,
|
1028
|
-
"git_url": "git://github.com/codeforamerica/fcc_reboot.git",
|
1029
|
-
"homepage": "",
|
1030
|
-
"html_url": "https://github.com/codeforamerica/fcc_reboot",
|
1031
|
-
"id": 1624516,
|
1032
|
-
"language": "Ruby",
|
1033
|
-
"master_branch": null,
|
1034
|
-
"name": "fcc_reboot",
|
1035
|
-
"open_issues": 0,
|
1036
|
-
"owner": {
|
1037
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1038
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1039
|
-
"id": 337792,
|
1040
|
-
"login": "codeforamerica",
|
1041
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1042
|
-
},
|
1043
|
-
"private": false,
|
1044
|
-
"pushed_at": "2011-11-02T10:18:03Z",
|
1045
|
-
"size": 108,
|
1046
|
-
"ssh_url": "git@github.com:codeforamerica/fcc_reboot.git",
|
1047
|
-
"svn_url": "https://github.com/codeforamerica/fcc_reboot",
|
1048
|
-
"updated_at": "2011-11-02T10:18:05Z",
|
1049
|
-
"url": "https://api.github.com/repos/codeforamerica/fcc_reboot",
|
1050
|
-
"watchers": 3
|
1051
|
-
},
|
1052
|
-
{
|
1053
|
-
"clone_url": "https://github.com/codeforamerica/FCC-PHP-Library.git",
|
1054
|
-
"created_at": "2011-04-16T22:08:34Z",
|
1055
|
-
"description": "",
|
1056
|
-
"fork": false,
|
1057
|
-
"forks": 2,
|
1058
|
-
"git_url": "git://github.com/codeforamerica/FCC-PHP-Library.git",
|
1059
|
-
"homepage": "",
|
1060
|
-
"html_url": "https://github.com/codeforamerica/FCC-PHP-Library",
|
1061
|
-
"id": 1624525,
|
1062
|
-
"language": null,
|
1063
|
-
"master_branch": null,
|
1064
|
-
"name": "FCC-PHP-Library",
|
1065
|
-
"open_issues": 0,
|
1066
|
-
"owner": {
|
1067
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1068
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1069
|
-
"id": 337792,
|
1070
|
-
"login": "codeforamerica",
|
1071
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1072
|
-
},
|
1073
|
-
"private": false,
|
1074
|
-
"pushed_at": "2011-04-17T04:43:34Z",
|
1075
|
-
"size": 108,
|
1076
|
-
"ssh_url": "git@github.com:codeforamerica/FCC-PHP-Library.git",
|
1077
|
-
"svn_url": "https://github.com/codeforamerica/FCC-PHP-Library",
|
1078
|
-
"updated_at": "2011-10-04T14:17:34Z",
|
1079
|
-
"url": "https://api.github.com/repos/codeforamerica/FCC-PHP-Library",
|
1080
|
-
"watchers": 5
|
1081
|
-
},
|
1082
|
-
{
|
1083
|
-
"clone_url": "https://github.com/codeforamerica/SBA-PHP-Library.git",
|
1084
|
-
"created_at": "2011-04-17T04:17:47Z",
|
1085
|
-
"description": "",
|
1086
|
-
"fork": false,
|
1087
|
-
"forks": 2,
|
1088
|
-
"git_url": "git://github.com/codeforamerica/SBA-PHP-Library.git",
|
1089
|
-
"homepage": "",
|
1090
|
-
"html_url": "https://github.com/codeforamerica/SBA-PHP-Library",
|
1091
|
-
"id": 1625281,
|
1092
|
-
"language": null,
|
1093
|
-
"master_branch": null,
|
1094
|
-
"name": "SBA-PHP-Library",
|
1095
|
-
"open_issues": 1,
|
1096
|
-
"owner": {
|
1097
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1098
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1099
|
-
"id": 337792,
|
1100
|
-
"login": "codeforamerica",
|
1101
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1102
|
-
},
|
1103
|
-
"private": false,
|
1104
|
-
"pushed_at": "2011-04-17T04:27:10Z",
|
1105
|
-
"size": 104,
|
1106
|
-
"ssh_url": "git@github.com:codeforamerica/SBA-PHP-Library.git",
|
1107
|
-
"svn_url": "https://github.com/codeforamerica/SBA-PHP-Library",
|
1108
|
-
"updated_at": "2011-10-04T14:17:50Z",
|
1109
|
-
"url": "https://api.github.com/repos/codeforamerica/SBA-PHP-Library",
|
1110
|
-
"watchers": 2
|
1111
|
-
},
|
1112
|
-
{
|
1113
|
-
"clone_url": "https://github.com/codeforamerica/tilemilling.git",
|
1114
|
-
"created_at": "2011-04-18T22:36:05Z",
|
1115
|
-
"description": "Set of scripts and code to help use TileMill and TileStream",
|
1116
|
-
"fork": false,
|
1117
|
-
"forks": 1,
|
1118
|
-
"git_url": "git://github.com/codeforamerica/tilemilling.git",
|
1119
|
-
"homepage": "",
|
1120
|
-
"html_url": "https://github.com/codeforamerica/tilemilling",
|
1121
|
-
"id": 1632989,
|
1122
|
-
"language": null,
|
1123
|
-
"master_branch": null,
|
1124
|
-
"name": "tilemilling",
|
1125
|
-
"open_issues": 0,
|
1126
|
-
"owner": {
|
1127
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1128
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1129
|
-
"id": 337792,
|
1130
|
-
"login": "codeforamerica",
|
1131
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1132
|
-
},
|
1133
|
-
"private": false,
|
1134
|
-
"pushed_at": "2011-05-27T22:12:55Z",
|
1135
|
-
"size": 392,
|
1136
|
-
"ssh_url": "git@github.com:codeforamerica/tilemilling.git",
|
1137
|
-
"svn_url": "https://github.com/codeforamerica/tilemilling",
|
1138
|
-
"updated_at": "2011-10-04T14:20:39Z",
|
1139
|
-
"url": "https://api.github.com/repos/codeforamerica/tilemilling",
|
1140
|
-
"watchers": 10
|
1141
|
-
},
|
1142
|
-
{
|
1143
|
-
"clone_url": "https://github.com/codeforamerica/likeminded_api_wrappers.git",
|
1144
|
-
"created_at": "2011-04-20T17:56:30Z",
|
1145
|
-
"description": "Consume the Likeminded API in different languages.",
|
1146
|
-
"fork": false,
|
1147
|
-
"forks": 3,
|
1148
|
-
"git_url": "git://github.com/codeforamerica/likeminded_api_wrappers.git",
|
1149
|
-
"homepage": "",
|
1150
|
-
"html_url": "https://github.com/codeforamerica/likeminded_api_wrappers",
|
1151
|
-
"id": 1641672,
|
1152
|
-
"language": "Python",
|
1153
|
-
"master_branch": null,
|
1154
|
-
"name": "likeminded_api_wrappers",
|
1155
|
-
"open_issues": 1,
|
1156
|
-
"owner": {
|
1157
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1158
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1159
|
-
"id": 337792,
|
1160
|
-
"login": "codeforamerica",
|
1161
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1162
|
-
},
|
1163
|
-
"private": false,
|
1164
|
-
"pushed_at": "2011-05-27T22:30:01Z",
|
1165
|
-
"size": 116,
|
1166
|
-
"ssh_url": "git@github.com:codeforamerica/likeminded_api_wrappers.git",
|
1167
|
-
"svn_url": "https://github.com/codeforamerica/likeminded_api_wrappers",
|
1168
|
-
"updated_at": "2011-10-04T14:24:00Z",
|
1169
|
-
"url": "https://api.github.com/repos/codeforamerica/likeminded_api_wrappers",
|
1170
|
-
"watchers": 3
|
1171
|
-
},
|
1172
|
-
{
|
1173
|
-
"clone_url": "https://github.com/codeforamerica/publicservice.git",
|
1174
|
-
"created_at": "2011-04-20T18:15:35Z",
|
1175
|
-
"description": "Public Service Recognition Week 2011",
|
1176
|
-
"fork": false,
|
1177
|
-
"forks": 2,
|
1178
|
-
"git_url": "git://github.com/codeforamerica/publicservice.git",
|
1179
|
-
"homepage": "",
|
1180
|
-
"html_url": "https://github.com/codeforamerica/publicservice",
|
1181
|
-
"id": 1641781,
|
1182
|
-
"language": "Python",
|
1183
|
-
"master_branch": null,
|
1184
|
-
"name": "publicservice",
|
1185
|
-
"open_issues": 0,
|
1186
|
-
"owner": {
|
1187
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1188
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1189
|
-
"id": 337792,
|
1190
|
-
"login": "codeforamerica",
|
1191
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1192
|
-
},
|
1193
|
-
"private": false,
|
1194
|
-
"pushed_at": "2011-05-05T20:54:04Z",
|
1195
|
-
"size": 3212,
|
1196
|
-
"ssh_url": "git@github.com:codeforamerica/publicservice.git",
|
1197
|
-
"svn_url": "https://github.com/codeforamerica/publicservice",
|
1198
|
-
"updated_at": "2011-10-04T14:24:03Z",
|
1199
|
-
"url": "https://api.github.com/repos/codeforamerica/publicservice",
|
1200
|
-
"watchers": 3
|
1201
|
-
},
|
1202
|
-
{
|
1203
|
-
"clone_url": "https://github.com/codeforamerica/solarboston.git",
|
1204
|
-
"created_at": "2011-04-29T22:08:21Z",
|
1205
|
-
"description": "This is a replication of the Solar Boston project",
|
1206
|
-
"fork": false,
|
1207
|
-
"forks": 1,
|
1208
|
-
"git_url": "git://github.com/codeforamerica/solarboston.git",
|
1209
|
-
"homepage": "",
|
1210
|
-
"html_url": "https://github.com/codeforamerica/solarboston",
|
1211
|
-
"id": 1682837,
|
1212
|
-
"language": "ActionScript",
|
1213
|
-
"master_branch": null,
|
1214
|
-
"name": "solarboston",
|
1215
|
-
"open_issues": 0,
|
1216
|
-
"owner": {
|
1217
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1218
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1219
|
-
"id": 337792,
|
1220
|
-
"login": "codeforamerica",
|
1221
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1222
|
-
},
|
1223
|
-
"private": false,
|
1224
|
-
"pushed_at": "2011-06-15T19:25:51Z",
|
1225
|
-
"size": 46848,
|
1226
|
-
"ssh_url": "git@github.com:codeforamerica/solarboston.git",
|
1227
|
-
"svn_url": "https://github.com/codeforamerica/solarboston",
|
1228
|
-
"updated_at": "2011-10-04T14:39:07Z",
|
1229
|
-
"url": "https://api.github.com/repos/codeforamerica/solarboston",
|
1230
|
-
"watchers": 1
|
1231
|
-
},
|
1232
|
-
{
|
1233
|
-
"clone_url": "https://github.com/codeforamerica/flu-by.git",
|
1234
|
-
"created_at": "2011-04-29T23:33:07Z",
|
1235
|
-
"description": "CDC App Challenge submission: flu-by",
|
1236
|
-
"fork": false,
|
1237
|
-
"forks": 1,
|
1238
|
-
"git_url": "git://github.com/codeforamerica/flu-by.git",
|
1239
|
-
"homepage": "",
|
1240
|
-
"html_url": "https://github.com/codeforamerica/flu-by",
|
1241
|
-
"id": 1683096,
|
1242
|
-
"language": "JavaScript",
|
1243
|
-
"master_branch": null,
|
1244
|
-
"name": "flu-by",
|
1245
|
-
"open_issues": 0,
|
1246
|
-
"owner": {
|
1247
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1248
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1249
|
-
"id": 337792,
|
1250
|
-
"login": "codeforamerica",
|
1251
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1252
|
-
},
|
1253
|
-
"private": false,
|
1254
|
-
"pushed_at": "2011-05-27T22:27:54Z",
|
1255
|
-
"size": 4460,
|
1256
|
-
"ssh_url": "git@github.com:codeforamerica/flu-by.git",
|
1257
|
-
"svn_url": "https://github.com/codeforamerica/flu-by",
|
1258
|
-
"updated_at": "2011-10-04T14:39:12Z",
|
1259
|
-
"url": "https://api.github.com/repos/codeforamerica/flu-by",
|
1260
|
-
"watchers": 1
|
1261
|
-
},
|
1262
|
-
{
|
1263
|
-
"clone_url": "https://github.com/codeforamerica/pyramidongae.git",
|
1264
|
-
"created_at": "2011-05-01T06:22:09Z",
|
1265
|
-
"description": "A simple demonstration of using Pyramid on Google App Engine.",
|
1266
|
-
"fork": false,
|
1267
|
-
"forks": 3,
|
1268
|
-
"git_url": "git://github.com/codeforamerica/pyramidongae.git",
|
1269
|
-
"homepage": "",
|
1270
|
-
"html_url": "https://github.com/codeforamerica/pyramidongae",
|
1271
|
-
"id": 1687013,
|
1272
|
-
"language": "Python",
|
1273
|
-
"master_branch": null,
|
1274
|
-
"name": "pyramidongae",
|
1275
|
-
"open_issues": 0,
|
1276
|
-
"owner": {
|
1277
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1278
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1279
|
-
"id": 337792,
|
1280
|
-
"login": "codeforamerica",
|
1281
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1282
|
-
},
|
1283
|
-
"private": false,
|
1284
|
-
"pushed_at": "2011-05-01T21:48:46Z",
|
1285
|
-
"size": 188,
|
1286
|
-
"ssh_url": "git@github.com:codeforamerica/pyramidongae.git",
|
1287
|
-
"svn_url": "https://github.com/codeforamerica/pyramidongae",
|
1288
|
-
"updated_at": "2011-10-04T14:40:32Z",
|
1289
|
-
"url": "https://api.github.com/repos/codeforamerica/pyramidongae",
|
1290
|
-
"watchers": 8
|
1291
|
-
},
|
1292
|
-
{
|
1293
|
-
"clone_url": "https://github.com/codeforamerica/civipedia.git",
|
1294
|
-
"created_at": "2011-05-09T22:11:01Z",
|
1295
|
-
"description": "Online community of practice for anyone who wants to make their city better.",
|
1296
|
-
"fork": false,
|
1297
|
-
"forks": 1,
|
1298
|
-
"git_url": "git://github.com/codeforamerica/civipedia.git",
|
1299
|
-
"homepage": "",
|
1300
|
-
"html_url": "https://github.com/codeforamerica/civipedia",
|
1301
|
-
"id": 1725021,
|
1302
|
-
"language": "Python",
|
1303
|
-
"master_branch": null,
|
1304
|
-
"name": "civipedia",
|
1305
|
-
"open_issues": 3,
|
1306
|
-
"owner": {
|
1307
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1308
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1309
|
-
"id": 337792,
|
1310
|
-
"login": "codeforamerica",
|
1311
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1312
|
-
},
|
1313
|
-
"private": false,
|
1314
|
-
"pushed_at": "2011-07-19T22:20:46Z",
|
1315
|
-
"size": 2336,
|
1316
|
-
"ssh_url": "git@github.com:codeforamerica/civipedia.git",
|
1317
|
-
"svn_url": "https://github.com/codeforamerica/civipedia",
|
1318
|
-
"updated_at": "2011-10-04T14:54:41Z",
|
1319
|
-
"url": "https://api.github.com/repos/codeforamerica/civipedia",
|
1320
|
-
"watchers": 2
|
1321
|
-
},
|
1322
|
-
{
|
1323
|
-
"clone_url": "https://github.com/codeforamerica/node-lessons.git",
|
1324
|
-
"created_at": "2011-05-09T22:51:03Z",
|
1325
|
-
"description": "Learning NodeJS",
|
1326
|
-
"fork": false,
|
1327
|
-
"forks": 1,
|
1328
|
-
"git_url": "git://github.com/codeforamerica/node-lessons.git",
|
1329
|
-
"homepage": "",
|
1330
|
-
"html_url": "https://github.com/codeforamerica/node-lessons",
|
1331
|
-
"id": 1725187,
|
1332
|
-
"language": "JavaScript",
|
1333
|
-
"master_branch": null,
|
1334
|
-
"name": "node-lessons",
|
1335
|
-
"open_issues": 0,
|
1336
|
-
"owner": {
|
1337
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1338
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1339
|
-
"id": 337792,
|
1340
|
-
"login": "codeforamerica",
|
1341
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1342
|
-
},
|
1343
|
-
"private": false,
|
1344
|
-
"pushed_at": "2011-05-18T23:15:57Z",
|
1345
|
-
"size": 524,
|
1346
|
-
"ssh_url": "git@github.com:codeforamerica/node-lessons.git",
|
1347
|
-
"svn_url": "https://github.com/codeforamerica/node-lessons",
|
1348
|
-
"updated_at": "2011-10-04T14:54:45Z",
|
1349
|
-
"url": "https://api.github.com/repos/codeforamerica/node-lessons",
|
1350
|
-
"watchers": 2
|
1351
|
-
},
|
1352
|
-
{
|
1353
|
-
"clone_url": "https://github.com/codeforamerica/city-hero.git",
|
1354
|
-
"created_at": "2011-05-09T23:57:55Z",
|
1355
|
-
"description": "The City Hero, Engagement Toolkit, Engagikit, Togather, thing in node.js",
|
1356
|
-
"fork": false,
|
1357
|
-
"forks": 4,
|
1358
|
-
"git_url": "git://github.com/codeforamerica/city-hero.git",
|
1359
|
-
"homepage": "",
|
1360
|
-
"html_url": "https://github.com/codeforamerica/city-hero",
|
1361
|
-
"id": 1725427,
|
1362
|
-
"language": "JavaScript",
|
1363
|
-
"master_branch": null,
|
1364
|
-
"name": "city-hero",
|
1365
|
-
"open_issues": 12,
|
1366
|
-
"owner": {
|
1367
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1368
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1369
|
-
"id": 337792,
|
1370
|
-
"login": "codeforamerica",
|
1371
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1372
|
-
},
|
1373
|
-
"private": false,
|
1374
|
-
"pushed_at": "2011-06-20T21:58:27Z",
|
1375
|
-
"size": 14616,
|
1376
|
-
"ssh_url": "git@github.com:codeforamerica/city-hero.git",
|
1377
|
-
"svn_url": "https://github.com/codeforamerica/city-hero",
|
1378
|
-
"updated_at": "2011-10-15T06:00:36Z",
|
1379
|
-
"url": "https://api.github.com/repos/codeforamerica/city-hero",
|
1380
|
-
"watchers": 5
|
1381
|
-
},
|
1382
|
-
{
|
1383
|
-
"clone_url": "https://github.com/codeforamerica/AllIncomeFoods.git",
|
1384
|
-
"created_at": "2011-05-10T04:53:26Z",
|
1385
|
-
"description": "An app that lists places that accept food stamps",
|
1386
|
-
"fork": true,
|
1387
|
-
"forks": 0,
|
1388
|
-
"git_url": "git://github.com/codeforamerica/AllIncomeFoods.git",
|
1389
|
-
"homepage": "",
|
1390
|
-
"html_url": "https://github.com/codeforamerica/AllIncomeFoods",
|
1391
|
-
"id": 1726335,
|
1392
|
-
"language": "Ruby",
|
1393
|
-
"master_branch": null,
|
1394
|
-
"name": "AllIncomeFoods",
|
1395
|
-
"open_issues": 0,
|
1396
|
-
"owner": {
|
1397
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1398
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1399
|
-
"id": 337792,
|
1400
|
-
"login": "codeforamerica",
|
1401
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1402
|
-
},
|
1403
|
-
"private": false,
|
1404
|
-
"pushed_at": "2011-05-09T17:54:38Z",
|
1405
|
-
"size": 1836,
|
1406
|
-
"ssh_url": "git@github.com:codeforamerica/AllIncomeFoods.git",
|
1407
|
-
"svn_url": "https://github.com/codeforamerica/AllIncomeFoods",
|
1408
|
-
"updated_at": "2011-10-04T14:55:12Z",
|
1409
|
-
"url": "https://api.github.com/repos/codeforamerica/AllIncomeFoods",
|
1410
|
-
"watchers": 2
|
1411
|
-
},
|
1412
|
-
{
|
1413
|
-
"clone_url": "https://github.com/codeforamerica/togather.git",
|
1414
|
-
"created_at": "2011-05-10T21:47:46Z",
|
1415
|
-
"description": "A light weight event aggregator in Node.js",
|
1416
|
-
"fork": false,
|
1417
|
-
"forks": 2,
|
1418
|
-
"git_url": "git://github.com/codeforamerica/togather.git",
|
1419
|
-
"homepage": "",
|
1420
|
-
"html_url": "https://github.com/codeforamerica/togather",
|
1421
|
-
"id": 1730312,
|
1422
|
-
"language": "JavaScript",
|
1423
|
-
"master_branch": null,
|
1424
|
-
"name": "togather",
|
1425
|
-
"open_issues": 0,
|
1426
|
-
"owner": {
|
1427
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1428
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1429
|
-
"id": 337792,
|
1430
|
-
"login": "codeforamerica",
|
1431
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1432
|
-
},
|
1433
|
-
"private": false,
|
1434
|
-
"pushed_at": "2011-06-03T20:28:06Z",
|
1435
|
-
"size": 2268,
|
1436
|
-
"ssh_url": "git@github.com:codeforamerica/togather.git",
|
1437
|
-
"svn_url": "https://github.com/codeforamerica/togather",
|
1438
|
-
"updated_at": "2011-12-05T22:44:45Z",
|
1439
|
-
"url": "https://api.github.com/repos/codeforamerica/togather",
|
1440
|
-
"watchers": 3
|
1441
|
-
},
|
1442
|
-
{
|
1443
|
-
"clone_url": "https://github.com/codeforamerica/futures_pipeline.git",
|
1444
|
-
"created_at": "2011-05-11T01:20:15Z",
|
1445
|
-
"description": "Ruby wrapper for the Futures, Inc. US Military Pipeline API",
|
1446
|
-
"fork": false,
|
1447
|
-
"forks": 1,
|
1448
|
-
"git_url": "git://github.com/codeforamerica/futures_pipeline.git",
|
1449
|
-
"homepage": "",
|
1450
|
-
"html_url": "https://github.com/codeforamerica/futures_pipeline",
|
1451
|
-
"id": 1731059,
|
1452
|
-
"language": "Ruby",
|
1453
|
-
"master_branch": null,
|
1454
|
-
"name": "futures_pipeline",
|
1455
|
-
"open_issues": 0,
|
1456
|
-
"owner": {
|
1457
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1458
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1459
|
-
"id": 337792,
|
1460
|
-
"login": "codeforamerica",
|
1461
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1462
|
-
},
|
1463
|
-
"private": false,
|
1464
|
-
"pushed_at": "2011-11-09T01:03:46Z",
|
1465
|
-
"size": 2452,
|
1466
|
-
"ssh_url": "git@github.com:codeforamerica/futures_pipeline.git",
|
1467
|
-
"svn_url": "https://github.com/codeforamerica/futures_pipeline",
|
1468
|
-
"updated_at": "2011-11-09T01:03:49Z",
|
1469
|
-
"url": "https://api.github.com/repos/codeforamerica/futures_pipeline",
|
1470
|
-
"watchers": 3
|
1471
|
-
},
|
1472
|
-
{
|
1473
|
-
"clone_url": "https://github.com/codeforamerica/homeworknotifier-redirect.git",
|
1474
|
-
"created_at": "2011-05-11T10:34:14Z",
|
1475
|
-
"description": "Router app for my personal site",
|
1476
|
-
"fork": true,
|
1477
|
-
"forks": 0,
|
1478
|
-
"git_url": "git://github.com/codeforamerica/homeworknotifier-redirect.git",
|
1479
|
-
"homepage": "http://dianakimball.com",
|
1480
|
-
"html_url": "https://github.com/codeforamerica/homeworknotifier-redirect",
|
1481
|
-
"id": 1732629,
|
1482
|
-
"language": "Ruby",
|
1483
|
-
"master_branch": null,
|
1484
|
-
"name": "homeworknotifier-redirect",
|
1485
|
-
"open_issues": 0,
|
1486
|
-
"owner": {
|
1487
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1488
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1489
|
-
"id": 337792,
|
1490
|
-
"login": "codeforamerica",
|
1491
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1492
|
-
},
|
1493
|
-
"private": false,
|
1494
|
-
"pushed_at": "2011-05-11T10:47:28Z",
|
1495
|
-
"size": 836,
|
1496
|
-
"ssh_url": "git@github.com:codeforamerica/homeworknotifier-redirect.git",
|
1497
|
-
"svn_url": "https://github.com/codeforamerica/homeworknotifier-redirect",
|
1498
|
-
"updated_at": "2011-10-04T14:57:35Z",
|
1499
|
-
"url": "https://api.github.com/repos/codeforamerica/homeworknotifier-redirect",
|
1500
|
-
"watchers": 1
|
1501
|
-
},
|
1502
|
-
{
|
1503
|
-
"clone_url": "https://github.com/codeforamerica/Data-Wiki.git",
|
1504
|
-
"created_at": "2011-05-14T21:40:38Z",
|
1505
|
-
"description": "A Drupal-based front end for merging and improving datasets",
|
1506
|
-
"fork": false,
|
1507
|
-
"forks": 4,
|
1508
|
-
"git_url": "git://github.com/codeforamerica/Data-Wiki.git",
|
1509
|
-
"homepage": "",
|
1510
|
-
"html_url": "https://github.com/codeforamerica/Data-Wiki",
|
1511
|
-
"id": 1749105,
|
1512
|
-
"language": "PHP",
|
1513
|
-
"master_branch": null,
|
1514
|
-
"name": "Data-Wiki",
|
1515
|
-
"open_issues": 51,
|
1516
|
-
"owner": {
|
1517
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1518
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1519
|
-
"id": 337792,
|
1520
|
-
"login": "codeforamerica",
|
1521
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1522
|
-
},
|
1523
|
-
"private": false,
|
1524
|
-
"pushed_at": "2011-10-23T18:03:11Z",
|
1525
|
-
"size": 4280,
|
1526
|
-
"ssh_url": "git@github.com:codeforamerica/Data-Wiki.git",
|
1527
|
-
"svn_url": "https://github.com/codeforamerica/Data-Wiki",
|
1528
|
-
"updated_at": "2011-12-14T22:19:36Z",
|
1529
|
-
"url": "https://api.github.com/repos/codeforamerica/Data-Wiki",
|
1530
|
-
"watchers": 10
|
1531
|
-
},
|
1532
|
-
{
|
1533
|
-
"clone_url": "https://github.com/codeforamerica/CityWho.git",
|
1534
|
-
"created_at": "2011-05-17T20:13:14Z",
|
1535
|
-
"description": "A public directory of communities in your city",
|
1536
|
-
"fork": false,
|
1537
|
-
"forks": 1,
|
1538
|
-
"git_url": "git://github.com/codeforamerica/CityWho.git",
|
1539
|
-
"homepage": "",
|
1540
|
-
"html_url": "https://github.com/codeforamerica/CityWho",
|
1541
|
-
"id": 1762661,
|
1542
|
-
"language": null,
|
1543
|
-
"master_branch": null,
|
1544
|
-
"name": "CityWho",
|
1545
|
-
"open_issues": 0,
|
1546
|
-
"owner": {
|
1547
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1548
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1549
|
-
"id": 337792,
|
1550
|
-
"login": "codeforamerica",
|
1551
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1552
|
-
},
|
1553
|
-
"private": false,
|
1554
|
-
"pushed_at": "2011-05-17T20:14:46Z",
|
1555
|
-
"size": 116,
|
1556
|
-
"ssh_url": "git@github.com:codeforamerica/CityWho.git",
|
1557
|
-
"svn_url": "https://github.com/codeforamerica/CityWho",
|
1558
|
-
"updated_at": "2011-10-04T15:08:23Z",
|
1559
|
-
"url": "https://api.github.com/repos/codeforamerica/CityWho",
|
1560
|
-
"watchers": 2
|
1561
|
-
},
|
1562
|
-
{
|
1563
|
-
"clone_url": "https://github.com/codeforamerica/aedmapper.git",
|
1564
|
-
"created_at": "2011-05-17T23:45:04Z",
|
1565
|
-
"description": "crowdsourcing defibrillator locations",
|
1566
|
-
"fork": false,
|
1567
|
-
"forks": 1,
|
1568
|
-
"git_url": "git://github.com/codeforamerica/aedmapper.git",
|
1569
|
-
"homepage": "www.aedmapper.com",
|
1570
|
-
"html_url": "https://github.com/codeforamerica/aedmapper",
|
1571
|
-
"id": 1763562,
|
1572
|
-
"language": "JavaScript",
|
1573
|
-
"master_branch": null,
|
1574
|
-
"name": "aedmapper",
|
1575
|
-
"open_issues": 0,
|
1576
|
-
"owner": {
|
1577
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1578
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1579
|
-
"id": 337792,
|
1580
|
-
"login": "codeforamerica",
|
1581
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1582
|
-
},
|
1583
|
-
"private": false,
|
1584
|
-
"pushed_at": "2011-06-14T07:10:45Z",
|
1585
|
-
"size": 1984,
|
1586
|
-
"ssh_url": "git@github.com:codeforamerica/aedmapper.git",
|
1587
|
-
"svn_url": "https://github.com/codeforamerica/aedmapper",
|
1588
|
-
"updated_at": "2011-10-04T15:08:43Z",
|
1589
|
-
"url": "https://api.github.com/repos/codeforamerica/aedmapper",
|
1590
|
-
"watchers": 4
|
1591
|
-
},
|
1592
|
-
{
|
1593
|
-
"clone_url": "https://github.com/codeforamerica/sba_ruby.git",
|
1594
|
-
"created_at": "2011-05-18T16:50:58Z",
|
1595
|
-
"description": "A ruby gem for the SBA API",
|
1596
|
-
"fork": false,
|
1597
|
-
"forks": 2,
|
1598
|
-
"git_url": "git://github.com/codeforamerica/sba_ruby.git",
|
1599
|
-
"homepage": "",
|
1600
|
-
"html_url": "https://github.com/codeforamerica/sba_ruby",
|
1601
|
-
"id": 1767045,
|
1602
|
-
"language": "Ruby",
|
1603
|
-
"master_branch": null,
|
1604
|
-
"name": "sba_ruby",
|
1605
|
-
"open_issues": 0,
|
1606
|
-
"owner": {
|
1607
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1608
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1609
|
-
"id": 337792,
|
1610
|
-
"login": "codeforamerica",
|
1611
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1612
|
-
},
|
1613
|
-
"private": false,
|
1614
|
-
"pushed_at": "2011-11-09T01:05:54Z",
|
1615
|
-
"size": 108,
|
1616
|
-
"ssh_url": "git@github.com:codeforamerica/sba_ruby.git",
|
1617
|
-
"svn_url": "https://github.com/codeforamerica/sba_ruby",
|
1618
|
-
"updated_at": "2011-11-09T01:05:58Z",
|
1619
|
-
"url": "https://api.github.com/repos/codeforamerica/sba_ruby",
|
1620
|
-
"watchers": 3
|
1621
|
-
},
|
1622
|
-
{
|
1623
|
-
"clone_url": "https://github.com/codeforamerica/recalls.git",
|
1624
|
-
"created_at": "2011-05-18T18:10:29Z",
|
1625
|
-
"description": "Ruby gem for the product recalls on the USA Search API",
|
1626
|
-
"fork": false,
|
1627
|
-
"forks": 1,
|
1628
|
-
"git_url": "git://github.com/codeforamerica/recalls.git",
|
1629
|
-
"homepage": "http://search.usa.gov/api/recalls",
|
1630
|
-
"html_url": "https://github.com/codeforamerica/recalls",
|
1631
|
-
"id": 1767409,
|
1632
|
-
"language": "Ruby",
|
1633
|
-
"master_branch": null,
|
1634
|
-
"name": "recalls",
|
1635
|
-
"open_issues": 0,
|
1636
|
-
"owner": {
|
1637
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1638
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1639
|
-
"id": 337792,
|
1640
|
-
"login": "codeforamerica",
|
1641
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1642
|
-
},
|
1643
|
-
"private": false,
|
1644
|
-
"pushed_at": "2011-05-27T22:26:50Z",
|
1645
|
-
"size": 1328,
|
1646
|
-
"ssh_url": "git@github.com:codeforamerica/recalls.git",
|
1647
|
-
"svn_url": "https://github.com/codeforamerica/recalls",
|
1648
|
-
"updated_at": "2011-10-04T15:10:09Z",
|
1649
|
-
"url": "https://api.github.com/repos/codeforamerica/recalls",
|
1650
|
-
"watchers": 2
|
1651
|
-
},
|
1652
|
-
{
|
1653
|
-
"clone_url": "https://github.com/codeforamerica/github_tracker.git",
|
1654
|
-
"created_at": "2011-05-23T20:49:19Z",
|
1655
|
-
"description": "Tracks organizations, their projects and contributors",
|
1656
|
-
"fork": false,
|
1657
|
-
"forks": 2,
|
1658
|
-
"git_url": "git://github.com/codeforamerica/github_tracker.git",
|
1659
|
-
"homepage": "stats.codeforamerica.org",
|
1660
|
-
"html_url": "https://github.com/codeforamerica/github_tracker",
|
1661
|
-
"id": 1790086,
|
1662
|
-
"language": "Ruby",
|
1663
|
-
"master_branch": null,
|
1664
|
-
"name": "github_tracker",
|
1665
|
-
"open_issues": 6,
|
1666
|
-
"owner": {
|
1667
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1668
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1669
|
-
"id": 337792,
|
1670
|
-
"login": "codeforamerica",
|
1671
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1672
|
-
},
|
1673
|
-
"private": false,
|
1674
|
-
"pushed_at": "2011-09-30T16:19:07Z",
|
1675
|
-
"size": 112,
|
1676
|
-
"ssh_url": "git@github.com:codeforamerica/github_tracker.git",
|
1677
|
-
"svn_url": "https://github.com/codeforamerica/github_tracker",
|
1678
|
-
"updated_at": "2011-12-14T10:30:47Z",
|
1679
|
-
"url": "https://api.github.com/repos/codeforamerica/github_tracker",
|
1680
|
-
"watchers": 3
|
1681
|
-
},
|
1682
|
-
{
|
1683
|
-
"clone_url": "https://github.com/codeforamerica/api_dropbox.git",
|
1684
|
-
"created_at": "2011-05-25T19:14:52Z",
|
1685
|
-
"description": "",
|
1686
|
-
"fork": false,
|
1687
|
-
"forks": 1,
|
1688
|
-
"git_url": "git://github.com/codeforamerica/api_dropbox.git",
|
1689
|
-
"homepage": "",
|
1690
|
-
"html_url": "https://github.com/codeforamerica/api_dropbox",
|
1691
|
-
"id": 1800630,
|
1692
|
-
"language": "Ruby",
|
1693
|
-
"master_branch": null,
|
1694
|
-
"name": "api_dropbox",
|
1695
|
-
"open_issues": 0,
|
1696
|
-
"owner": {
|
1697
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1698
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1699
|
-
"id": 337792,
|
1700
|
-
"login": "codeforamerica",
|
1701
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1702
|
-
},
|
1703
|
-
"private": false,
|
1704
|
-
"pushed_at": "2011-06-15T00:13:16Z",
|
1705
|
-
"size": 284,
|
1706
|
-
"ssh_url": "git@github.com:codeforamerica/api_dropbox.git",
|
1707
|
-
"svn_url": "https://github.com/codeforamerica/api_dropbox",
|
1708
|
-
"updated_at": "2011-10-04T15:22:28Z",
|
1709
|
-
"url": "https://api.github.com/repos/codeforamerica/api_dropbox",
|
1710
|
-
"watchers": 1
|
1711
|
-
},
|
1712
|
-
{
|
1713
|
-
"clone_url": "https://github.com/codeforamerica/mapper.git",
|
1714
|
-
"created_at": "2011-05-26T23:49:49Z",
|
1715
|
-
"description": "community mapping tools",
|
1716
|
-
"fork": false,
|
1717
|
-
"forks": 1,
|
1718
|
-
"git_url": "git://github.com/codeforamerica/mapper.git",
|
1719
|
-
"homepage": "http://max.couchone.com/mapper/_design/app/index.html",
|
1720
|
-
"html_url": "https://github.com/codeforamerica/mapper",
|
1721
|
-
"id": 1807307,
|
1722
|
-
"language": "JavaScript",
|
1723
|
-
"master_branch": null,
|
1724
|
-
"name": "mapper",
|
1725
|
-
"open_issues": 0,
|
1726
|
-
"owner": {
|
1727
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1728
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1729
|
-
"id": 337792,
|
1730
|
-
"login": "codeforamerica",
|
1731
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1732
|
-
},
|
1733
|
-
"private": false,
|
1734
|
-
"pushed_at": "2011-05-27T23:29:54Z",
|
1735
|
-
"size": 700,
|
1736
|
-
"ssh_url": "git@github.com:codeforamerica/mapper.git",
|
1737
|
-
"svn_url": "https://github.com/codeforamerica/mapper",
|
1738
|
-
"updated_at": "2011-12-05T22:44:53Z",
|
1739
|
-
"url": "https://api.github.com/repos/codeforamerica/mapper",
|
1740
|
-
"watchers": 4
|
1741
|
-
},
|
1742
|
-
{
|
1743
|
-
"clone_url": "https://github.com/codeforamerica/Welcome-America-WP-Theme.git",
|
1744
|
-
"created_at": "2011-05-27T16:38:18Z",
|
1745
|
-
"description": "A smash and grab job that will strip a live site and put it on the WordPress platform.",
|
1746
|
-
"fork": true,
|
1747
|
-
"forks": 1,
|
1748
|
-
"git_url": "git://github.com/codeforamerica/Welcome-America-WP-Theme.git",
|
1749
|
-
"homepage": "",
|
1750
|
-
"html_url": "https://github.com/codeforamerica/Welcome-America-WP-Theme",
|
1751
|
-
"id": 1810642,
|
1752
|
-
"language": "JavaScript",
|
1753
|
-
"master_branch": null,
|
1754
|
-
"name": "Welcome-America-WP-Theme",
|
1755
|
-
"open_issues": 0,
|
1756
|
-
"owner": {
|
1757
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1758
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1759
|
-
"id": 337792,
|
1760
|
-
"login": "codeforamerica",
|
1761
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1762
|
-
},
|
1763
|
-
"private": false,
|
1764
|
-
"pushed_at": "2011-06-28T06:00:42Z",
|
1765
|
-
"size": 136,
|
1766
|
-
"ssh_url": "git@github.com:codeforamerica/Welcome-America-WP-Theme.git",
|
1767
|
-
"svn_url": "https://github.com/codeforamerica/Welcome-America-WP-Theme",
|
1768
|
-
"updated_at": "2011-10-15T06:00:10Z",
|
1769
|
-
"url": "https://api.github.com/repos/codeforamerica/Welcome-America-WP-Theme",
|
1770
|
-
"watchers": 2
|
1771
|
-
},
|
1772
|
-
{
|
1773
|
-
"clone_url": "https://github.com/codeforamerica/Philly-SOC.git",
|
1774
|
-
"created_at": "2011-05-27T21:39:48Z",
|
1775
|
-
"description": "City of Philadelphia State of the City Website",
|
1776
|
-
"fork": false,
|
1777
|
-
"forks": 1,
|
1778
|
-
"git_url": "git://github.com/codeforamerica/Philly-SOC.git",
|
1779
|
-
"homepage": "",
|
1780
|
-
"html_url": "https://github.com/codeforamerica/Philly-SOC",
|
1781
|
-
"id": 1812011,
|
1782
|
-
"language": "PHP",
|
1783
|
-
"master_branch": null,
|
1784
|
-
"name": "Philly-SOC",
|
1785
|
-
"open_issues": 0,
|
1786
|
-
"owner": {
|
1787
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1788
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1789
|
-
"id": 337792,
|
1790
|
-
"login": "codeforamerica",
|
1791
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1792
|
-
},
|
1793
|
-
"private": false,
|
1794
|
-
"pushed_at": "2011-06-15T22:59:49Z",
|
1795
|
-
"size": 7244,
|
1796
|
-
"ssh_url": "git@github.com:codeforamerica/Philly-SOC.git",
|
1797
|
-
"svn_url": "https://github.com/codeforamerica/Philly-SOC",
|
1798
|
-
"updated_at": "2011-11-22T04:06:33Z",
|
1799
|
-
"url": "https://api.github.com/repos/codeforamerica/Philly-SOC",
|
1800
|
-
"watchers": 2
|
1801
|
-
},
|
1802
|
-
{
|
1803
|
-
"clone_url": "https://github.com/codeforamerica/SolarWidget.git",
|
1804
|
-
"created_at": "2011-05-27T23:25:00Z",
|
1805
|
-
"description": "This is a widget for ArcGIS to measure solar capabilities of rooftops.",
|
1806
|
-
"fork": false,
|
1807
|
-
"forks": 1,
|
1808
|
-
"git_url": "git://github.com/codeforamerica/SolarWidget.git",
|
1809
|
-
"homepage": "http://solar-1.apphb.com",
|
1810
|
-
"html_url": "https://github.com/codeforamerica/SolarWidget",
|
1811
|
-
"id": 1812385,
|
1812
|
-
"language": null,
|
1813
|
-
"master_branch": null,
|
1814
|
-
"name": "SolarWidget",
|
1815
|
-
"open_issues": 0,
|
1816
|
-
"owner": {
|
1817
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1818
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1819
|
-
"id": 337792,
|
1820
|
-
"login": "codeforamerica",
|
1821
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1822
|
-
},
|
1823
|
-
"private": false,
|
1824
|
-
"pushed_at": "2011-08-11T21:44:21Z",
|
1825
|
-
"size": 2620,
|
1826
|
-
"ssh_url": "git@github.com:codeforamerica/SolarWidget.git",
|
1827
|
-
"svn_url": "https://github.com/codeforamerica/SolarWidget",
|
1828
|
-
"updated_at": "2011-10-04T15:26:48Z",
|
1829
|
-
"url": "https://api.github.com/repos/codeforamerica/SolarWidget",
|
1830
|
-
"watchers": 2
|
1831
|
-
},
|
1832
|
-
{
|
1833
|
-
"clone_url": "https://github.com/codeforamerica/commitalization.git",
|
1834
|
-
"created_at": "2011-05-28T03:45:09Z",
|
1835
|
-
"description": "A browser based visualization for git commits.",
|
1836
|
-
"fork": false,
|
1837
|
-
"forks": 3,
|
1838
|
-
"git_url": "git://github.com/codeforamerica/commitalization.git",
|
1839
|
-
"homepage": "",
|
1840
|
-
"html_url": "https://github.com/codeforamerica/commitalization",
|
1841
|
-
"id": 1812939,
|
1842
|
-
"language": "JavaScript",
|
1843
|
-
"master_branch": null,
|
1844
|
-
"name": "commitalization",
|
1845
|
-
"open_issues": 0,
|
1846
|
-
"owner": {
|
1847
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1848
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1849
|
-
"id": 337792,
|
1850
|
-
"login": "codeforamerica",
|
1851
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1852
|
-
},
|
1853
|
-
"private": false,
|
1854
|
-
"pushed_at": "2011-06-23T05:13:29Z",
|
1855
|
-
"size": 112,
|
1856
|
-
"ssh_url": "git@github.com:codeforamerica/commitalization.git",
|
1857
|
-
"svn_url": "https://github.com/codeforamerica/commitalization",
|
1858
|
-
"updated_at": "2011-10-04T15:27:01Z",
|
1859
|
-
"url": "https://api.github.com/repos/codeforamerica/commitalization",
|
1860
|
-
"watchers": 5
|
1861
|
-
},
|
1862
|
-
{
|
1863
|
-
"clone_url": "https://github.com/codeforamerica/geek_corps.git",
|
1864
|
-
"created_at": "2011-06-01T18:20:13Z",
|
1865
|
-
"description": "Our tool for micro-network building across our social networks",
|
1866
|
-
"fork": false,
|
1867
|
-
"forks": 6,
|
1868
|
-
"git_url": "git://github.com/codeforamerica/geek_corps.git",
|
1869
|
-
"homepage": "geeks.codeforamerica.org",
|
1870
|
-
"html_url": "https://github.com/codeforamerica/geek_corps",
|
1871
|
-
"id": 1833282,
|
1872
|
-
"language": "Ruby",
|
1873
|
-
"master_branch": null,
|
1874
|
-
"name": "geek_corps",
|
1875
|
-
"open_issues": 0,
|
1876
|
-
"owner": {
|
1877
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1878
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1879
|
-
"id": 337792,
|
1880
|
-
"login": "codeforamerica",
|
1881
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1882
|
-
},
|
1883
|
-
"private": false,
|
1884
|
-
"pushed_at": "2011-11-22T00:16:53Z",
|
1885
|
-
"size": 144,
|
1886
|
-
"ssh_url": "git@github.com:codeforamerica/geek_corps.git",
|
1887
|
-
"svn_url": "https://github.com/codeforamerica/geek_corps",
|
1888
|
-
"updated_at": "2011-12-09T14:30:30Z",
|
1889
|
-
"url": "https://api.github.com/repos/codeforamerica/geek_corps",
|
1890
|
-
"watchers": 15
|
1891
|
-
},
|
1892
|
-
{
|
1893
|
-
"clone_url": "https://github.com/codeforamerica/direct_employers.git",
|
1894
|
-
"created_at": "2011-06-01T23:43:36Z",
|
1895
|
-
"description": "This is a ruby wrapper for the Direct Employers API",
|
1896
|
-
"fork": false,
|
1897
|
-
"forks": 1,
|
1898
|
-
"git_url": "git://github.com/codeforamerica/direct_employers.git",
|
1899
|
-
"homepage": "",
|
1900
|
-
"html_url": "https://github.com/codeforamerica/direct_employers",
|
1901
|
-
"id": 1834733,
|
1902
|
-
"language": "Ruby",
|
1903
|
-
"master_branch": null,
|
1904
|
-
"name": "direct_employers",
|
1905
|
-
"open_issues": 0,
|
1906
|
-
"owner": {
|
1907
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1908
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1909
|
-
"id": 337792,
|
1910
|
-
"login": "codeforamerica",
|
1911
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1912
|
-
},
|
1913
|
-
"private": false,
|
1914
|
-
"pushed_at": "2011-11-02T10:12:45Z",
|
1915
|
-
"size": 1856,
|
1916
|
-
"ssh_url": "git@github.com:codeforamerica/direct_employers.git",
|
1917
|
-
"svn_url": "https://github.com/codeforamerica/direct_employers",
|
1918
|
-
"updated_at": "2011-11-02T10:12:45Z",
|
1919
|
-
"url": "https://api.github.com/repos/codeforamerica/direct_employers",
|
1920
|
-
"watchers": 2
|
1921
|
-
},
|
1922
|
-
{
|
1923
|
-
"clone_url": "https://github.com/codeforamerica/CityGroups.git",
|
1924
|
-
"created_at": "2011-06-09T23:00:58Z",
|
1925
|
-
"description": "A public directory of communities in your city",
|
1926
|
-
"fork": false,
|
1927
|
-
"forks": 2,
|
1928
|
-
"git_url": "git://github.com/codeforamerica/CityGroups.git",
|
1929
|
-
"homepage": "http://citygroups.org",
|
1930
|
-
"html_url": "https://github.com/codeforamerica/CityGroups",
|
1931
|
-
"id": 1873481,
|
1932
|
-
"language": "JavaScript",
|
1933
|
-
"master_branch": null,
|
1934
|
-
"name": "CityGroups",
|
1935
|
-
"open_issues": 0,
|
1936
|
-
"owner": {
|
1937
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1938
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1939
|
-
"id": 337792,
|
1940
|
-
"login": "codeforamerica",
|
1941
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1942
|
-
},
|
1943
|
-
"private": false,
|
1944
|
-
"pushed_at": "2011-10-03T18:00:59Z",
|
1945
|
-
"size": 116,
|
1946
|
-
"ssh_url": "git@github.com:codeforamerica/CityGroups.git",
|
1947
|
-
"svn_url": "https://github.com/codeforamerica/CityGroups",
|
1948
|
-
"updated_at": "2011-12-09T14:31:01Z",
|
1949
|
-
"url": "https://api.github.com/repos/codeforamerica/CityGroups",
|
1950
|
-
"watchers": 5
|
1951
|
-
},
|
1952
|
-
{
|
1953
|
-
"clone_url": "https://github.com/codeforamerica/USA-Today-Census-Python.git",
|
1954
|
-
"created_at": "2011-06-09T23:50:12Z",
|
1955
|
-
"description": "A Python wrapper for USA Today's Census API",
|
1956
|
-
"fork": false,
|
1957
|
-
"forks": 1,
|
1958
|
-
"git_url": "git://github.com/codeforamerica/USA-Today-Census-Python.git",
|
1959
|
-
"homepage": "",
|
1960
|
-
"html_url": "https://github.com/codeforamerica/USA-Today-Census-Python",
|
1961
|
-
"id": 1873624,
|
1962
|
-
"language": "Python",
|
1963
|
-
"master_branch": null,
|
1964
|
-
"name": "USA-Today-Census-Python",
|
1965
|
-
"open_issues": 0,
|
1966
|
-
"owner": {
|
1967
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1968
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1969
|
-
"id": 337792,
|
1970
|
-
"login": "codeforamerica",
|
1971
|
-
"url": "https://api.github.com/users/codeforamerica"
|
1972
|
-
},
|
1973
|
-
"private": false,
|
1974
|
-
"pushed_at": "2011-08-04T17:55:32Z",
|
1975
|
-
"size": 388,
|
1976
|
-
"ssh_url": "git@github.com:codeforamerica/USA-Today-Census-Python.git",
|
1977
|
-
"svn_url": "https://github.com/codeforamerica/USA-Today-Census-Python",
|
1978
|
-
"updated_at": "2011-11-17T12:03:54Z",
|
1979
|
-
"url": "https://api.github.com/repos/codeforamerica/USA-Today-Census-Python",
|
1980
|
-
"watchers": 2
|
1981
|
-
},
|
1982
|
-
{
|
1983
|
-
"clone_url": "https://github.com/codeforamerica/SBA-Python.git",
|
1984
|
-
"created_at": "2011-06-11T04:06:55Z",
|
1985
|
-
"description": "",
|
1986
|
-
"fork": false,
|
1987
|
-
"forks": 2,
|
1988
|
-
"git_url": "git://github.com/codeforamerica/SBA-Python.git",
|
1989
|
-
"homepage": "",
|
1990
|
-
"html_url": "https://github.com/codeforamerica/SBA-Python",
|
1991
|
-
"id": 1879058,
|
1992
|
-
"language": "Python",
|
1993
|
-
"master_branch": null,
|
1994
|
-
"name": "SBA-Python",
|
1995
|
-
"open_issues": 0,
|
1996
|
-
"owner": {
|
1997
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
1998
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
1999
|
-
"id": 337792,
|
2000
|
-
"login": "codeforamerica",
|
2001
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2002
|
-
},
|
2003
|
-
"private": false,
|
2004
|
-
"pushed_at": "2011-06-24T18:06:54Z",
|
2005
|
-
"size": 120,
|
2006
|
-
"ssh_url": "git@github.com:codeforamerica/SBA-Python.git",
|
2007
|
-
"svn_url": "https://github.com/codeforamerica/SBA-Python",
|
2008
|
-
"updated_at": "2011-10-04T15:51:55Z",
|
2009
|
-
"url": "https://api.github.com/repos/codeforamerica/SBA-Python",
|
2010
|
-
"watchers": 3
|
2011
|
-
},
|
2012
|
-
{
|
2013
|
-
"clone_url": "https://github.com/codeforamerica/PHP-API-Template.git",
|
2014
|
-
"created_at": "2011-06-13T17:33:19Z",
|
2015
|
-
"description": "PHP Base Class for API libraries",
|
2016
|
-
"fork": false,
|
2017
|
-
"forks": 1,
|
2018
|
-
"git_url": "git://github.com/codeforamerica/PHP-API-Template.git",
|
2019
|
-
"homepage": "http://codeforamerica.org",
|
2020
|
-
"html_url": "https://github.com/codeforamerica/PHP-API-Template",
|
2021
|
-
"id": 1890001,
|
2022
|
-
"language": "PHP",
|
2023
|
-
"master_branch": null,
|
2024
|
-
"name": "PHP-API-Template",
|
2025
|
-
"open_issues": 0,
|
2026
|
-
"owner": {
|
2027
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2028
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2029
|
-
"id": 337792,
|
2030
|
-
"login": "codeforamerica",
|
2031
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2032
|
-
},
|
2033
|
-
"private": false,
|
2034
|
-
"pushed_at": "2011-07-21T18:29:15Z",
|
2035
|
-
"size": 1160,
|
2036
|
-
"ssh_url": "git@github.com:codeforamerica/PHP-API-Template.git",
|
2037
|
-
"svn_url": "https://github.com/codeforamerica/PHP-API-Template",
|
2038
|
-
"updated_at": "2011-10-04T15:56:03Z",
|
2039
|
-
"url": "https://api.github.com/repos/codeforamerica/PHP-API-Template",
|
2040
|
-
"watchers": 3
|
2041
|
-
},
|
2042
|
-
{
|
2043
|
-
"clone_url": "https://github.com/codeforamerica/USA-Today-Census-PHP.git",
|
2044
|
-
"created_at": "2011-06-13T20:23:54Z",
|
2045
|
-
"description": "A PHP wrapper for USA Today's Census API",
|
2046
|
-
"fork": false,
|
2047
|
-
"forks": 1,
|
2048
|
-
"git_url": "git://github.com/codeforamerica/USA-Today-Census-PHP.git",
|
2049
|
-
"homepage": "http://codeforamerica.org",
|
2050
|
-
"html_url": "https://github.com/codeforamerica/USA-Today-Census-PHP",
|
2051
|
-
"id": 1890907,
|
2052
|
-
"language": null,
|
2053
|
-
"master_branch": null,
|
2054
|
-
"name": "USA-Today-Census-PHP",
|
2055
|
-
"open_issues": 0,
|
2056
|
-
"owner": {
|
2057
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2058
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2059
|
-
"id": 337792,
|
2060
|
-
"login": "codeforamerica",
|
2061
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2062
|
-
},
|
2063
|
-
"private": false,
|
2064
|
-
"pushed_at": "2011-06-13T23:26:50Z",
|
2065
|
-
"size": 108,
|
2066
|
-
"ssh_url": "git@github.com:codeforamerica/USA-Today-Census-PHP.git",
|
2067
|
-
"svn_url": "https://github.com/codeforamerica/USA-Today-Census-PHP",
|
2068
|
-
"updated_at": "2011-10-04T15:56:33Z",
|
2069
|
-
"url": "https://api.github.com/repos/codeforamerica/USA-Today-Census-PHP",
|
2070
|
-
"watchers": 1
|
2071
|
-
},
|
2072
|
-
{
|
2073
|
-
"clone_url": "https://github.com/codeforamerica/broadband_map_ruby.git",
|
2074
|
-
"created_at": "2011-06-14T20:24:04Z",
|
2075
|
-
"description": "Ruby Wrapper for the Broadband Maps API - http://broadbandmap.gov/developer",
|
2076
|
-
"fork": false,
|
2077
|
-
"forks": 3,
|
2078
|
-
"git_url": "git://github.com/codeforamerica/broadband_map_ruby.git",
|
2079
|
-
"homepage": "",
|
2080
|
-
"html_url": "https://github.com/codeforamerica/broadband_map_ruby",
|
2081
|
-
"id": 1896543,
|
2082
|
-
"language": "Ruby",
|
2083
|
-
"master_branch": null,
|
2084
|
-
"name": "broadband_map_ruby",
|
2085
|
-
"open_issues": 0,
|
2086
|
-
"owner": {
|
2087
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2088
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2089
|
-
"id": 337792,
|
2090
|
-
"login": "codeforamerica",
|
2091
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2092
|
-
},
|
2093
|
-
"private": false,
|
2094
|
-
"pushed_at": "2011-11-02T10:03:03Z",
|
2095
|
-
"size": 112,
|
2096
|
-
"ssh_url": "git@github.com:codeforamerica/broadband_map_ruby.git",
|
2097
|
-
"svn_url": "https://github.com/codeforamerica/broadband_map_ruby",
|
2098
|
-
"updated_at": "2011-11-02T10:03:06Z",
|
2099
|
-
"url": "https://api.github.com/repos/codeforamerica/broadband_map_ruby",
|
2100
|
-
"watchers": 3
|
2101
|
-
},
|
2102
|
-
{
|
2103
|
-
"clone_url": "https://github.com/codeforamerica/clinical_trials_python.git",
|
2104
|
-
"created_at": "2011-06-14T21:59:45Z",
|
2105
|
-
"description": "Python API for the ClinicalTrials.gov API",
|
2106
|
-
"fork": false,
|
2107
|
-
"forks": 1,
|
2108
|
-
"git_url": "git://github.com/codeforamerica/clinical_trials_python.git",
|
2109
|
-
"homepage": "http://clinicaltrials.gov/ct2/info/linking",
|
2110
|
-
"html_url": "https://github.com/codeforamerica/clinical_trials_python",
|
2111
|
-
"id": 1897033,
|
2112
|
-
"language": "Python",
|
2113
|
-
"master_branch": null,
|
2114
|
-
"name": "clinical_trials_python",
|
2115
|
-
"open_issues": 0,
|
2116
|
-
"owner": {
|
2117
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2118
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2119
|
-
"id": 337792,
|
2120
|
-
"login": "codeforamerica",
|
2121
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2122
|
-
},
|
2123
|
-
"private": false,
|
2124
|
-
"pushed_at": "2011-08-16T00:25:37Z",
|
2125
|
-
"size": 156,
|
2126
|
-
"ssh_url": "git@github.com:codeforamerica/clinical_trials_python.git",
|
2127
|
-
"svn_url": "https://github.com/codeforamerica/clinical_trials_python",
|
2128
|
-
"updated_at": "2011-10-04T15:59:00Z",
|
2129
|
-
"url": "https://api.github.com/repos/codeforamerica/clinical_trials_python",
|
2130
|
-
"watchers": 1
|
2131
|
-
},
|
2132
|
-
{
|
2133
|
-
"clone_url": "https://github.com/codeforamerica/usa_spending_python.git",
|
2134
|
-
"created_at": "2011-06-15T20:24:20Z",
|
2135
|
-
"description": "Python wrapper for the USA Spending API",
|
2136
|
-
"fork": false,
|
2137
|
-
"forks": 2,
|
2138
|
-
"git_url": "git://github.com/codeforamerica/usa_spending_python.git",
|
2139
|
-
"homepage": "http://usaspending.gov/data?carryfilters=on",
|
2140
|
-
"html_url": "https://github.com/codeforamerica/usa_spending_python",
|
2141
|
-
"id": 1902374,
|
2142
|
-
"language": "Python",
|
2143
|
-
"master_branch": null,
|
2144
|
-
"name": "usa_spending_python",
|
2145
|
-
"open_issues": 0,
|
2146
|
-
"owner": {
|
2147
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2148
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2149
|
-
"id": 337792,
|
2150
|
-
"login": "codeforamerica",
|
2151
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2152
|
-
},
|
2153
|
-
"private": false,
|
2154
|
-
"pushed_at": "2011-08-08T19:14:21Z",
|
2155
|
-
"size": 176,
|
2156
|
-
"ssh_url": "git@github.com:codeforamerica/usa_spending_python.git",
|
2157
|
-
"svn_url": "https://github.com/codeforamerica/usa_spending_python",
|
2158
|
-
"updated_at": "2011-10-04T16:01:06Z",
|
2159
|
-
"url": "https://api.github.com/repos/codeforamerica/usa_spending_python",
|
2160
|
-
"watchers": 2
|
2161
|
-
},
|
2162
|
-
{
|
2163
|
-
"clone_url": "https://github.com/codeforamerica/world_bank_ruby.git",
|
2164
|
-
"created_at": "2011-06-16T19:55:36Z",
|
2165
|
-
"description": "A Ruby wrapper for the World Bank Development Indicators API",
|
2166
|
-
"fork": false,
|
2167
|
-
"forks": 2,
|
2168
|
-
"git_url": "git://github.com/codeforamerica/world_bank_ruby.git",
|
2169
|
-
"homepage": "",
|
2170
|
-
"html_url": "https://github.com/codeforamerica/world_bank_ruby",
|
2171
|
-
"id": 1907595,
|
2172
|
-
"language": "Ruby",
|
2173
|
-
"master_branch": null,
|
2174
|
-
"name": "world_bank_ruby",
|
2175
|
-
"open_issues": 0,
|
2176
|
-
"owner": {
|
2177
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2178
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2179
|
-
"id": 337792,
|
2180
|
-
"login": "codeforamerica",
|
2181
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2182
|
-
},
|
2183
|
-
"private": false,
|
2184
|
-
"pushed_at": "2011-08-26T00:13:25Z",
|
2185
|
-
"size": 112,
|
2186
|
-
"ssh_url": "git@github.com:codeforamerica/world_bank_ruby.git",
|
2187
|
-
"svn_url": "https://github.com/codeforamerica/world_bank_ruby",
|
2188
|
-
"updated_at": "2011-10-04T16:03:18Z",
|
2189
|
-
"url": "https://api.github.com/repos/codeforamerica/world_bank_ruby",
|
2190
|
-
"watchers": 5
|
2191
|
-
},
|
2192
|
-
{
|
2193
|
-
"clone_url": "https://github.com/codeforamerica/microsoft_open_data_python.git",
|
2194
|
-
"created_at": "2011-06-17T19:42:34Z",
|
2195
|
-
"description": "Python wrapper for Microsoft's Open Data API",
|
2196
|
-
"fork": false,
|
2197
|
-
"forks": 1,
|
2198
|
-
"git_url": "git://github.com/codeforamerica/microsoft_open_data_python.git",
|
2199
|
-
"homepage": "http://ogdisdk.cloudapp.net/",
|
2200
|
-
"html_url": "https://github.com/codeforamerica/microsoft_open_data_python",
|
2201
|
-
"id": 1912907,
|
2202
|
-
"language": "Python",
|
2203
|
-
"master_branch": null,
|
2204
|
-
"name": "microsoft_open_data_python",
|
2205
|
-
"open_issues": 0,
|
2206
|
-
"owner": {
|
2207
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2208
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2209
|
-
"id": 337792,
|
2210
|
-
"login": "codeforamerica",
|
2211
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2212
|
-
},
|
2213
|
-
"private": false,
|
2214
|
-
"pushed_at": "2011-08-08T19:10:54Z",
|
2215
|
-
"size": 128,
|
2216
|
-
"ssh_url": "git@github.com:codeforamerica/microsoft_open_data_python.git",
|
2217
|
-
"svn_url": "https://github.com/codeforamerica/microsoft_open_data_python",
|
2218
|
-
"updated_at": "2011-10-04T16:05:17Z",
|
2219
|
-
"url": "https://api.github.com/repos/codeforamerica/microsoft_open_data_python",
|
2220
|
-
"watchers": 1
|
2221
|
-
},
|
2222
|
-
{
|
2223
|
-
"clone_url": "https://github.com/codeforamerica/badger-panda.git",
|
2224
|
-
"created_at": "2011-06-17T22:01:37Z",
|
2225
|
-
"description": "Badger vs Panda.",
|
2226
|
-
"fork": false,
|
2227
|
-
"forks": 2,
|
2228
|
-
"git_url": "git://github.com/codeforamerica/badger-panda.git",
|
2229
|
-
"homepage": "",
|
2230
|
-
"html_url": "https://github.com/codeforamerica/badger-panda",
|
2231
|
-
"id": 1913528,
|
2232
|
-
"language": "JavaScript",
|
2233
|
-
"master_branch": null,
|
2234
|
-
"name": "badger-panda",
|
2235
|
-
"open_issues": 0,
|
2236
|
-
"owner": {
|
2237
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2238
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2239
|
-
"id": 337792,
|
2240
|
-
"login": "codeforamerica",
|
2241
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2242
|
-
},
|
2243
|
-
"private": false,
|
2244
|
-
"pushed_at": "2011-10-12T20:23:17Z",
|
2245
|
-
"size": 120,
|
2246
|
-
"ssh_url": "git@github.com:codeforamerica/badger-panda.git",
|
2247
|
-
"svn_url": "https://github.com/codeforamerica/badger-panda",
|
2248
|
-
"updated_at": "2011-10-12T20:23:20Z",
|
2249
|
-
"url": "https://api.github.com/repos/codeforamerica/badger-panda",
|
2250
|
-
"watchers": 2
|
2251
|
-
},
|
2252
|
-
{
|
2253
|
-
"clone_url": "https://github.com/codeforamerica/congress.git",
|
2254
|
-
"created_at": "2011-06-19T00:11:10Z",
|
2255
|
-
"description": "Ruby wrapper for the Real-Time Congress API",
|
2256
|
-
"fork": false,
|
2257
|
-
"forks": 3,
|
2258
|
-
"git_url": "git://github.com/codeforamerica/congress.git",
|
2259
|
-
"homepage": "http://services.sunlightlabs.com/docs/Real_Time_Congress_API/",
|
2260
|
-
"html_url": "https://github.com/codeforamerica/congress",
|
2261
|
-
"id": 1917704,
|
2262
|
-
"language": "Ruby",
|
2263
|
-
"master_branch": null,
|
2264
|
-
"name": "congress",
|
2265
|
-
"open_issues": 0,
|
2266
|
-
"owner": {
|
2267
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2268
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2269
|
-
"id": 337792,
|
2270
|
-
"login": "codeforamerica",
|
2271
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2272
|
-
},
|
2273
|
-
"private": false,
|
2274
|
-
"pushed_at": "2011-11-02T10:10:19Z",
|
2275
|
-
"size": 120,
|
2276
|
-
"ssh_url": "git@github.com:codeforamerica/congress.git",
|
2277
|
-
"svn_url": "https://github.com/codeforamerica/congress",
|
2278
|
-
"updated_at": "2011-11-02T10:10:19Z",
|
2279
|
-
"url": "https://api.github.com/repos/codeforamerica/congress",
|
2280
|
-
"watchers": 8
|
2281
|
-
},
|
2282
|
-
{
|
2283
|
-
"clone_url": "https://github.com/codeforamerica/microsoft_open_data_ruby.git",
|
2284
|
-
"created_at": "2011-06-20T18:01:44Z",
|
2285
|
-
"description": "Ruby wrapper for the Microsoft Open Government Data Initiative",
|
2286
|
-
"fork": false,
|
2287
|
-
"forks": 2,
|
2288
|
-
"git_url": "git://github.com/codeforamerica/microsoft_open_data_ruby.git",
|
2289
|
-
"homepage": "",
|
2290
|
-
"html_url": "https://github.com/codeforamerica/microsoft_open_data_ruby",
|
2291
|
-
"id": 1924951,
|
2292
|
-
"language": "Ruby",
|
2293
|
-
"master_branch": null,
|
2294
|
-
"name": "microsoft_open_data_ruby",
|
2295
|
-
"open_issues": 0,
|
2296
|
-
"owner": {
|
2297
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2298
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2299
|
-
"id": 337792,
|
2300
|
-
"login": "codeforamerica",
|
2301
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2302
|
-
},
|
2303
|
-
"private": false,
|
2304
|
-
"pushed_at": "2011-11-02T10:25:23Z",
|
2305
|
-
"size": 108,
|
2306
|
-
"ssh_url": "git@github.com:codeforamerica/microsoft_open_data_ruby.git",
|
2307
|
-
"svn_url": "https://github.com/codeforamerica/microsoft_open_data_ruby",
|
2308
|
-
"updated_at": "2011-11-02T10:25:23Z",
|
2309
|
-
"url": "https://api.github.com/repos/codeforamerica/microsoft_open_data_ruby",
|
2310
|
-
"watchers": 2
|
2311
|
-
},
|
2312
|
-
{
|
2313
|
-
"clone_url": "https://github.com/codeforamerica/PhillyGoes2College2.git",
|
2314
|
-
"created_at": "2011-06-20T18:18:06Z",
|
2315
|
-
"description": "Wordpress template for the PhillyGoes2College website",
|
2316
|
-
"fork": false,
|
2317
|
-
"forks": 2,
|
2318
|
-
"git_url": "git://github.com/codeforamerica/PhillyGoes2College2.git",
|
2319
|
-
"homepage": "http://www.phillygoes2college.org/",
|
2320
|
-
"html_url": "https://github.com/codeforamerica/PhillyGoes2College2",
|
2321
|
-
"id": 1925015,
|
2322
|
-
"language": "PHP",
|
2323
|
-
"master_branch": null,
|
2324
|
-
"name": "PhillyGoes2College2",
|
2325
|
-
"open_issues": 0,
|
2326
|
-
"owner": {
|
2327
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2328
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2329
|
-
"id": 337792,
|
2330
|
-
"login": "codeforamerica",
|
2331
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2332
|
-
},
|
2333
|
-
"private": false,
|
2334
|
-
"pushed_at": "2011-09-14T20:32:52Z",
|
2335
|
-
"size": 2540,
|
2336
|
-
"ssh_url": "git@github.com:codeforamerica/PhillyGoes2College2.git",
|
2337
|
-
"svn_url": "https://github.com/codeforamerica/PhillyGoes2College2",
|
2338
|
-
"updated_at": "2011-10-11T00:07:05Z",
|
2339
|
-
"url": "https://api.github.com/repos/codeforamerica/PhillyGoes2College2",
|
2340
|
-
"watchers": 3
|
2341
|
-
},
|
2342
|
-
{
|
2343
|
-
"clone_url": "https://github.com/codeforamerica/open311_python.git",
|
2344
|
-
"created_at": "2011-06-20T18:39:51Z",
|
2345
|
-
"description": "Python wrapper for the Open311 API",
|
2346
|
-
"fork": false,
|
2347
|
-
"forks": 1,
|
2348
|
-
"git_url": "git://github.com/codeforamerica/open311_python.git",
|
2349
|
-
"homepage": "",
|
2350
|
-
"html_url": "https://github.com/codeforamerica/open311_python",
|
2351
|
-
"id": 1925121,
|
2352
|
-
"language": "Python",
|
2353
|
-
"master_branch": null,
|
2354
|
-
"name": "open311_python",
|
2355
|
-
"open_issues": 0,
|
2356
|
-
"owner": {
|
2357
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2358
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2359
|
-
"id": 337792,
|
2360
|
-
"login": "codeforamerica",
|
2361
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2362
|
-
},
|
2363
|
-
"private": false,
|
2364
|
-
"pushed_at": "2011-08-08T19:12:01Z",
|
2365
|
-
"size": 228,
|
2366
|
-
"ssh_url": "git@github.com:codeforamerica/open311_python.git",
|
2367
|
-
"svn_url": "https://github.com/codeforamerica/open311_python",
|
2368
|
-
"updated_at": "2011-11-28T21:30:26Z",
|
2369
|
-
"url": "https://api.github.com/repos/codeforamerica/open311_python",
|
2370
|
-
"watchers": 3
|
2371
|
-
},
|
2372
|
-
{
|
2373
|
-
"clone_url": "https://github.com/codeforamerica/usa_spending_php.git",
|
2374
|
-
"created_at": "2011-06-20T20:04:15Z",
|
2375
|
-
"description": "Library for USA Spending API",
|
2376
|
-
"fork": false,
|
2377
|
-
"forks": 1,
|
2378
|
-
"git_url": "git://github.com/codeforamerica/usa_spending_php.git",
|
2379
|
-
"homepage": "http://usaspending.gov",
|
2380
|
-
"html_url": "https://github.com/codeforamerica/usa_spending_php",
|
2381
|
-
"id": 1925550,
|
2382
|
-
"language": "PHP",
|
2383
|
-
"master_branch": null,
|
2384
|
-
"name": "usa_spending_php",
|
2385
|
-
"open_issues": 0,
|
2386
|
-
"owner": {
|
2387
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2388
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2389
|
-
"id": 337792,
|
2390
|
-
"login": "codeforamerica",
|
2391
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2392
|
-
},
|
2393
|
-
"private": false,
|
2394
|
-
"pushed_at": "2011-07-13T18:49:12Z",
|
2395
|
-
"size": 148,
|
2396
|
-
"ssh_url": "git@github.com:codeforamerica/usa_spending_php.git",
|
2397
|
-
"svn_url": "https://github.com/codeforamerica/usa_spending_php",
|
2398
|
-
"updated_at": "2011-10-04T16:10:00Z",
|
2399
|
-
"url": "https://api.github.com/repos/codeforamerica/usa_spending_php",
|
2400
|
-
"watchers": 2
|
2401
|
-
},
|
2402
|
-
{
|
2403
|
-
"clone_url": "https://github.com/codeforamerica/world_bank_php.git",
|
2404
|
-
"created_at": "2011-06-20T21:54:44Z",
|
2405
|
-
"description": "World Bank PHP API Library",
|
2406
|
-
"fork": false,
|
2407
|
-
"forks": 1,
|
2408
|
-
"git_url": "git://github.com/codeforamerica/world_bank_php.git",
|
2409
|
-
"homepage": "http://data.worldbank.org/developers",
|
2410
|
-
"html_url": "https://github.com/codeforamerica/world_bank_php",
|
2411
|
-
"id": 1926157,
|
2412
|
-
"language": "PHP",
|
2413
|
-
"master_branch": null,
|
2414
|
-
"name": "world_bank_php",
|
2415
|
-
"open_issues": 0,
|
2416
|
-
"owner": {
|
2417
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2418
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2419
|
-
"id": 337792,
|
2420
|
-
"login": "codeforamerica",
|
2421
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2422
|
-
},
|
2423
|
-
"private": false,
|
2424
|
-
"pushed_at": "2011-07-26T17:01:39Z",
|
2425
|
-
"size": 280,
|
2426
|
-
"ssh_url": "git@github.com:codeforamerica/world_bank_php.git",
|
2427
|
-
"svn_url": "https://github.com/codeforamerica/world_bank_php",
|
2428
|
-
"updated_at": "2011-10-04T16:10:20Z",
|
2429
|
-
"url": "https://api.github.com/repos/codeforamerica/world_bank_php",
|
2430
|
-
"watchers": 2
|
2431
|
-
},
|
2432
|
-
{
|
2433
|
-
"clone_url": "https://github.com/codeforamerica/muralmapper.git",
|
2434
|
-
"created_at": "2011-06-20T22:33:54Z",
|
2435
|
-
"description": "A CouchDB + Nodejs + Twitter application that crowd sources mural art mapping.",
|
2436
|
-
"fork": true,
|
2437
|
-
"forks": 1,
|
2438
|
-
"git_url": "git://github.com/codeforamerica/muralmapper.git",
|
2439
|
-
"homepage": "http://artmapper.org",
|
2440
|
-
"html_url": "https://github.com/codeforamerica/muralmapper",
|
2441
|
-
"id": 1926293,
|
2442
|
-
"language": "JavaScript",
|
2443
|
-
"master_branch": null,
|
2444
|
-
"name": "muralmapper",
|
2445
|
-
"open_issues": 0,
|
2446
|
-
"owner": {
|
2447
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2448
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2449
|
-
"id": 337792,
|
2450
|
-
"login": "codeforamerica",
|
2451
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2452
|
-
},
|
2453
|
-
"private": false,
|
2454
|
-
"pushed_at": "2011-08-18T08:12:59Z",
|
2455
|
-
"size": 116,
|
2456
|
-
"ssh_url": "git@github.com:codeforamerica/muralmapper.git",
|
2457
|
-
"svn_url": "https://github.com/codeforamerica/muralmapper",
|
2458
|
-
"updated_at": "2011-11-22T07:36:14Z",
|
2459
|
-
"url": "https://api.github.com/repos/codeforamerica/muralmapper",
|
2460
|
-
"watchers": 4
|
2461
|
-
},
|
2462
|
-
{
|
2463
|
-
"clone_url": "https://github.com/codeforamerica/api_gem_template.git",
|
2464
|
-
"created_at": "2011-06-20T23:36:26Z",
|
2465
|
-
"description": "A jumpstart on making an api wrapper gem",
|
2466
|
-
"fork": false,
|
2467
|
-
"forks": 1,
|
2468
|
-
"git_url": "git://github.com/codeforamerica/api_gem_template.git",
|
2469
|
-
"homepage": "",
|
2470
|
-
"html_url": "https://github.com/codeforamerica/api_gem_template",
|
2471
|
-
"id": 1926494,
|
2472
|
-
"language": "Ruby",
|
2473
|
-
"master_branch": null,
|
2474
|
-
"name": "api_gem_template",
|
2475
|
-
"open_issues": 0,
|
2476
|
-
"owner": {
|
2477
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2478
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2479
|
-
"id": 337792,
|
2480
|
-
"login": "codeforamerica",
|
2481
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2482
|
-
},
|
2483
|
-
"private": false,
|
2484
|
-
"pushed_at": "2011-11-02T09:49:22Z",
|
2485
|
-
"size": 144,
|
2486
|
-
"ssh_url": "git@github.com:codeforamerica/api_gem_template.git",
|
2487
|
-
"svn_url": "https://github.com/codeforamerica/api_gem_template",
|
2488
|
-
"updated_at": "2011-11-02T09:49:24Z",
|
2489
|
-
"url": "https://api.github.com/repos/codeforamerica/api_gem_template",
|
2490
|
-
"watchers": 1
|
2491
|
-
},
|
2492
|
-
{
|
2493
|
-
"clone_url": "https://github.com/codeforamerica/fed_spending_ruby.git",
|
2494
|
-
"created_at": "2011-06-21T17:30:28Z",
|
2495
|
-
"description": "Ruby wrapper for the fedspending.org API",
|
2496
|
-
"fork": false,
|
2497
|
-
"forks": 2,
|
2498
|
-
"git_url": "git://github.com/codeforamerica/fed_spending_ruby.git",
|
2499
|
-
"homepage": "http://www.fedspending.org/apidoc.php",
|
2500
|
-
"html_url": "https://github.com/codeforamerica/fed_spending_ruby",
|
2501
|
-
"id": 1930455,
|
2502
|
-
"language": "Ruby",
|
2503
|
-
"master_branch": null,
|
2504
|
-
"name": "fed_spending_ruby",
|
2505
|
-
"open_issues": 0,
|
2506
|
-
"owner": {
|
2507
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2508
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2509
|
-
"id": 337792,
|
2510
|
-
"login": "codeforamerica",
|
2511
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2512
|
-
},
|
2513
|
-
"private": false,
|
2514
|
-
"pushed_at": "2011-11-02T10:19:51Z",
|
2515
|
-
"size": 108,
|
2516
|
-
"ssh_url": "git@github.com:codeforamerica/fed_spending_ruby.git",
|
2517
|
-
"svn_url": "https://github.com/codeforamerica/fed_spending_ruby",
|
2518
|
-
"updated_at": "2011-11-02T10:19:52Z",
|
2519
|
-
"url": "https://api.github.com/repos/codeforamerica/fed_spending_ruby",
|
2520
|
-
"watchers": 3
|
2521
|
-
},
|
2522
|
-
{
|
2523
|
-
"clone_url": "https://github.com/codeforamerica/recalls-python.git",
|
2524
|
-
"created_at": "2011-06-21T17:44:47Z",
|
2525
|
-
"description": "Python wrapper for usa.gov Product Recalls API",
|
2526
|
-
"fork": false,
|
2527
|
-
"forks": 1,
|
2528
|
-
"git_url": "git://github.com/codeforamerica/recalls-python.git",
|
2529
|
-
"homepage": "http://search.usa.gov/api/recalls",
|
2530
|
-
"html_url": "https://github.com/codeforamerica/recalls-python",
|
2531
|
-
"id": 1930526,
|
2532
|
-
"language": "Python",
|
2533
|
-
"master_branch": null,
|
2534
|
-
"name": "recalls-python",
|
2535
|
-
"open_issues": 0,
|
2536
|
-
"owner": {
|
2537
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2538
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2539
|
-
"id": 337792,
|
2540
|
-
"login": "codeforamerica",
|
2541
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2542
|
-
},
|
2543
|
-
"private": false,
|
2544
|
-
"pushed_at": "2011-06-24T18:31:27Z",
|
2545
|
-
"size": 116,
|
2546
|
-
"ssh_url": "git@github.com:codeforamerica/recalls-python.git",
|
2547
|
-
"svn_url": "https://github.com/codeforamerica/recalls-python",
|
2548
|
-
"updated_at": "2011-10-04T16:12:08Z",
|
2549
|
-
"url": "https://api.github.com/repos/codeforamerica/recalls-python",
|
2550
|
-
"watchers": 1
|
2551
|
-
},
|
2552
|
-
{
|
2553
|
-
"clone_url": "https://github.com/codeforamerica/aids_info_python.git",
|
2554
|
-
"created_at": "2011-06-21T22:20:27Z",
|
2555
|
-
"description": "Python wrapper for the AIDSinfo drug information API",
|
2556
|
-
"fork": false,
|
2557
|
-
"forks": 1,
|
2558
|
-
"git_url": "git://github.com/codeforamerica/aids_info_python.git",
|
2559
|
-
"homepage": "",
|
2560
|
-
"html_url": "https://github.com/codeforamerica/aids_info_python",
|
2561
|
-
"id": 1931964,
|
2562
|
-
"language": "Python",
|
2563
|
-
"master_branch": null,
|
2564
|
-
"name": "aids_info_python",
|
2565
|
-
"open_issues": 0,
|
2566
|
-
"owner": {
|
2567
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2568
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2569
|
-
"id": 337792,
|
2570
|
-
"login": "codeforamerica",
|
2571
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2572
|
-
},
|
2573
|
-
"private": false,
|
2574
|
-
"pushed_at": "2011-08-08T19:07:15Z",
|
2575
|
-
"size": 116,
|
2576
|
-
"ssh_url": "git@github.com:codeforamerica/aids_info_python.git",
|
2577
|
-
"svn_url": "https://github.com/codeforamerica/aids_info_python",
|
2578
|
-
"updated_at": "2011-10-04T16:12:41Z",
|
2579
|
-
"url": "https://api.github.com/repos/codeforamerica/aids_info_python",
|
2580
|
-
"watchers": 1
|
2581
|
-
},
|
2582
|
-
{
|
2583
|
-
"clone_url": "https://github.com/codeforamerica/aids_info_ruby.git",
|
2584
|
-
"created_at": "2011-06-21T23:59:49Z",
|
2585
|
-
"description": "A very small Ruby wrapper for the AIDS Info Drug API",
|
2586
|
-
"fork": false,
|
2587
|
-
"forks": 2,
|
2588
|
-
"git_url": "git://github.com/codeforamerica/aids_info_ruby.git",
|
2589
|
-
"homepage": "",
|
2590
|
-
"html_url": "https://github.com/codeforamerica/aids_info_ruby",
|
2591
|
-
"id": 1932305,
|
2592
|
-
"language": "Ruby",
|
2593
|
-
"master_branch": null,
|
2594
|
-
"name": "aids_info_ruby",
|
2595
|
-
"open_issues": 0,
|
2596
|
-
"owner": {
|
2597
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2598
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2599
|
-
"id": 337792,
|
2600
|
-
"login": "codeforamerica",
|
2601
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2602
|
-
},
|
2603
|
-
"private": false,
|
2604
|
-
"pushed_at": "2011-11-02T09:45:15Z",
|
2605
|
-
"size": 108,
|
2606
|
-
"ssh_url": "git@github.com:codeforamerica/aids_info_ruby.git",
|
2607
|
-
"svn_url": "https://github.com/codeforamerica/aids_info_ruby",
|
2608
|
-
"updated_at": "2011-11-02T09:45:16Z",
|
2609
|
-
"url": "https://api.github.com/repos/codeforamerica/aids_info_ruby",
|
2610
|
-
"watchers": 2
|
2611
|
-
},
|
2612
|
-
{
|
2613
|
-
"clone_url": "https://github.com/codeforamerica/faa_python.git",
|
2614
|
-
"created_at": "2011-06-22T18:55:37Z",
|
2615
|
-
"description": "Python wrapper for the FAA API",
|
2616
|
-
"fork": false,
|
2617
|
-
"forks": 1,
|
2618
|
-
"git_url": "git://github.com/codeforamerica/faa_python.git",
|
2619
|
-
"homepage": "",
|
2620
|
-
"html_url": "https://github.com/codeforamerica/faa_python",
|
2621
|
-
"id": 1936773,
|
2622
|
-
"language": "Python",
|
2623
|
-
"master_branch": null,
|
2624
|
-
"name": "faa_python",
|
2625
|
-
"open_issues": 0,
|
2626
|
-
"owner": {
|
2627
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2628
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2629
|
-
"id": 337792,
|
2630
|
-
"login": "codeforamerica",
|
2631
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2632
|
-
},
|
2633
|
-
"private": false,
|
2634
|
-
"pushed_at": "2011-08-08T19:07:41Z",
|
2635
|
-
"size": 156,
|
2636
|
-
"ssh_url": "git@github.com:codeforamerica/faa_python.git",
|
2637
|
-
"svn_url": "https://github.com/codeforamerica/faa_python",
|
2638
|
-
"updated_at": "2011-10-04T16:14:24Z",
|
2639
|
-
"url": "https://api.github.com/repos/codeforamerica/faa_python",
|
2640
|
-
"watchers": 1
|
2641
|
-
},
|
2642
|
-
{
|
2643
|
-
"clone_url": "https://github.com/codeforamerica/clinical_trials_ruby.git",
|
2644
|
-
"created_at": "2011-06-22T19:17:06Z",
|
2645
|
-
"description": "Ruby wrapper for the http://clinicaltrials.gov/ API",
|
2646
|
-
"fork": false,
|
2647
|
-
"forks": 3,
|
2648
|
-
"git_url": "git://github.com/codeforamerica/clinical_trials_ruby.git",
|
2649
|
-
"homepage": "http://clinicaltrials.gov/ct2/info/linking",
|
2650
|
-
"html_url": "https://github.com/codeforamerica/clinical_trials_ruby",
|
2651
|
-
"id": 1936940,
|
2652
|
-
"language": "Ruby",
|
2653
|
-
"master_branch": null,
|
2654
|
-
"name": "clinical_trials_ruby",
|
2655
|
-
"open_issues": 0,
|
2656
|
-
"owner": {
|
2657
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2658
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2659
|
-
"id": 337792,
|
2660
|
-
"login": "codeforamerica",
|
2661
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2662
|
-
},
|
2663
|
-
"private": false,
|
2664
|
-
"pushed_at": "2011-11-02T10:06:52Z",
|
2665
|
-
"size": 108,
|
2666
|
-
"ssh_url": "git@github.com:codeforamerica/clinical_trials_ruby.git",
|
2667
|
-
"svn_url": "https://github.com/codeforamerica/clinical_trials_ruby",
|
2668
|
-
"updated_at": "2011-11-02T10:06:52Z",
|
2669
|
-
"url": "https://api.github.com/repos/codeforamerica/clinical_trials_ruby",
|
2670
|
-
"watchers": 3
|
2671
|
-
},
|
2672
|
-
{
|
2673
|
-
"clone_url": "https://github.com/codeforamerica/seeclickfix_rb.git",
|
2674
|
-
"created_at": "2011-06-22T21:59:22Z",
|
2675
|
-
"description": "A Ruby Wrapper for the SeeClickFix API",
|
2676
|
-
"fork": false,
|
2677
|
-
"forks": 2,
|
2678
|
-
"git_url": "git://github.com/codeforamerica/seeclickfix_rb.git",
|
2679
|
-
"homepage": "http://help.seeclickfix.com/kb/api/api-overview",
|
2680
|
-
"html_url": "https://github.com/codeforamerica/seeclickfix_rb",
|
2681
|
-
"id": 1937992,
|
2682
|
-
"language": "Ruby",
|
2683
|
-
"master_branch": null,
|
2684
|
-
"name": "seeclickfix_rb",
|
2685
|
-
"open_issues": 0,
|
2686
|
-
"owner": {
|
2687
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2688
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2689
|
-
"id": 337792,
|
2690
|
-
"login": "codeforamerica",
|
2691
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2692
|
-
},
|
2693
|
-
"private": false,
|
2694
|
-
"pushed_at": "2011-11-02T10:29:27Z",
|
2695
|
-
"size": 136,
|
2696
|
-
"ssh_url": "git@github.com:codeforamerica/seeclickfix_rb.git",
|
2697
|
-
"svn_url": "https://github.com/codeforamerica/seeclickfix_rb",
|
2698
|
-
"updated_at": "2011-11-02T10:29:27Z",
|
2699
|
-
"url": "https://api.github.com/repos/codeforamerica/seeclickfix_rb",
|
2700
|
-
"watchers": 4
|
2701
|
-
},
|
2702
|
-
{
|
2703
|
-
"clone_url": "https://github.com/codeforamerica/rails_training.git",
|
2704
|
-
"created_at": "2011-06-23T15:55:48Z",
|
2705
|
-
"description": "Dan's Rails Training Guide",
|
2706
|
-
"fork": false,
|
2707
|
-
"forks": 3,
|
2708
|
-
"git_url": "git://github.com/codeforamerica/rails_training.git",
|
2709
|
-
"homepage": "",
|
2710
|
-
"html_url": "https://github.com/codeforamerica/rails_training",
|
2711
|
-
"id": 1942413,
|
2712
|
-
"language": "Ruby",
|
2713
|
-
"master_branch": null,
|
2714
|
-
"name": "rails_training",
|
2715
|
-
"open_issues": 0,
|
2716
|
-
"owner": {
|
2717
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2718
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2719
|
-
"id": 337792,
|
2720
|
-
"login": "codeforamerica",
|
2721
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2722
|
-
},
|
2723
|
-
"private": false,
|
2724
|
-
"pushed_at": "2011-06-24T19:54:41Z",
|
2725
|
-
"size": 116,
|
2726
|
-
"ssh_url": "git@github.com:codeforamerica/rails_training.git",
|
2727
|
-
"svn_url": "https://github.com/codeforamerica/rails_training",
|
2728
|
-
"updated_at": "2011-10-05T21:32:55Z",
|
2729
|
-
"url": "https://api.github.com/repos/codeforamerica/rails_training",
|
2730
|
-
"watchers": 3
|
2731
|
-
},
|
2732
|
-
{
|
2733
|
-
"clone_url": "https://github.com/codeforamerica/homework_notifier.git",
|
2734
|
-
"created_at": "2011-06-23T23:50:02Z",
|
2735
|
-
"description": "",
|
2736
|
-
"fork": false,
|
2737
|
-
"forks": 1,
|
2738
|
-
"git_url": "git://github.com/codeforamerica/homework_notifier.git",
|
2739
|
-
"homepage": "",
|
2740
|
-
"html_url": "https://github.com/codeforamerica/homework_notifier",
|
2741
|
-
"id": 1944948,
|
2742
|
-
"language": null,
|
2743
|
-
"master_branch": null,
|
2744
|
-
"name": "homework_notifier",
|
2745
|
-
"open_issues": 0,
|
2746
|
-
"owner": {
|
2747
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2748
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2749
|
-
"id": 337792,
|
2750
|
-
"login": "codeforamerica",
|
2751
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2752
|
-
},
|
2753
|
-
"private": false,
|
2754
|
-
"pushed_at": "2011-06-24T00:14:19Z",
|
2755
|
-
"size": 92,
|
2756
|
-
"ssh_url": "git@github.com:codeforamerica/homework_notifier.git",
|
2757
|
-
"svn_url": "https://github.com/codeforamerica/homework_notifier",
|
2758
|
-
"updated_at": "2011-10-04T16:17:32Z",
|
2759
|
-
"url": "https://api.github.com/repos/codeforamerica/homework_notifier",
|
2760
|
-
"watchers": 1
|
2761
|
-
},
|
2762
|
-
{
|
2763
|
-
"clone_url": "https://github.com/codeforamerica/open311-on-joget.git",
|
2764
|
-
"created_at": "2011-06-24T18:53:09Z",
|
2765
|
-
"description": "Open311 back-end implementation using Joget workflow engine.",
|
2766
|
-
"fork": false,
|
2767
|
-
"forks": 2,
|
2768
|
-
"git_url": "git://github.com/codeforamerica/open311-on-joget.git",
|
2769
|
-
"homepage": "",
|
2770
|
-
"html_url": "https://github.com/codeforamerica/open311-on-joget",
|
2771
|
-
"id": 1949182,
|
2772
|
-
"language": "Java",
|
2773
|
-
"master_branch": null,
|
2774
|
-
"name": "open311-on-joget",
|
2775
|
-
"open_issues": 0,
|
2776
|
-
"owner": {
|
2777
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2778
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2779
|
-
"id": 337792,
|
2780
|
-
"login": "codeforamerica",
|
2781
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2782
|
-
},
|
2783
|
-
"private": false,
|
2784
|
-
"pushed_at": "2011-09-06T15:59:25Z",
|
2785
|
-
"size": 160,
|
2786
|
-
"ssh_url": "git@github.com:codeforamerica/open311-on-joget.git",
|
2787
|
-
"svn_url": "https://github.com/codeforamerica/open311-on-joget",
|
2788
|
-
"updated_at": "2011-12-02T13:53:35Z",
|
2789
|
-
"url": "https://api.github.com/repos/codeforamerica/open311-on-joget",
|
2790
|
-
"watchers": 9
|
2791
|
-
},
|
2792
|
-
{
|
2793
|
-
"clone_url": "https://github.com/codeforamerica/RedesignGov.git",
|
2794
|
-
"created_at": "2011-06-24T21:59:10Z",
|
2795
|
-
"description": "A fresh attempt at github.com/codeforamerica/designforamerica",
|
2796
|
-
"fork": false,
|
2797
|
-
"forks": 1,
|
2798
|
-
"git_url": "git://github.com/codeforamerica/RedesignGov.git",
|
2799
|
-
"homepage": "http://redesigngov.org",
|
2800
|
-
"html_url": "https://github.com/codeforamerica/RedesignGov",
|
2801
|
-
"id": 1950031,
|
2802
|
-
"language": "Ruby",
|
2803
|
-
"master_branch": null,
|
2804
|
-
"name": "RedesignGov",
|
2805
|
-
"open_issues": 0,
|
2806
|
-
"owner": {
|
2807
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2808
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2809
|
-
"id": 337792,
|
2810
|
-
"login": "codeforamerica",
|
2811
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2812
|
-
},
|
2813
|
-
"private": false,
|
2814
|
-
"pushed_at": "2011-06-29T19:36:05Z",
|
2815
|
-
"size": 344,
|
2816
|
-
"ssh_url": "git@github.com:codeforamerica/RedesignGov.git",
|
2817
|
-
"svn_url": "https://github.com/codeforamerica/RedesignGov",
|
2818
|
-
"updated_at": "2011-10-04T16:19:34Z",
|
2819
|
-
"url": "https://api.github.com/repos/codeforamerica/RedesignGov",
|
2820
|
-
"watchers": 1
|
2821
|
-
},
|
2822
|
-
{
|
2823
|
-
"clone_url": "https://github.com/codeforamerica/Code-Jockey.git",
|
2824
|
-
"created_at": "2011-06-25T23:54:16Z",
|
2825
|
-
"description": "",
|
2826
|
-
"fork": false,
|
2827
|
-
"forks": 1,
|
2828
|
-
"git_url": "git://github.com/codeforamerica/Code-Jockey.git",
|
2829
|
-
"homepage": "",
|
2830
|
-
"html_url": "https://github.com/codeforamerica/Code-Jockey",
|
2831
|
-
"id": 1954105,
|
2832
|
-
"language": null,
|
2833
|
-
"master_branch": null,
|
2834
|
-
"name": "Code-Jockey",
|
2835
|
-
"open_issues": 0,
|
2836
|
-
"owner": {
|
2837
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2838
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2839
|
-
"id": 337792,
|
2840
|
-
"login": "codeforamerica",
|
2841
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2842
|
-
},
|
2843
|
-
"private": false,
|
2844
|
-
"pushed_at": "2011-06-29T23:54:37Z",
|
2845
|
-
"size": 96,
|
2846
|
-
"ssh_url": "git@github.com:codeforamerica/Code-Jockey.git",
|
2847
|
-
"svn_url": "https://github.com/codeforamerica/Code-Jockey",
|
2848
|
-
"updated_at": "2011-10-04T16:21:03Z",
|
2849
|
-
"url": "https://api.github.com/repos/codeforamerica/Code-Jockey",
|
2850
|
-
"watchers": 1
|
2851
|
-
},
|
2852
|
-
{
|
2853
|
-
"clone_url": "https://github.com/codeforamerica/open311_php.git",
|
2854
|
-
"created_at": "2011-06-26T04:16:23Z",
|
2855
|
-
"description": "Open311 PHP library updated for GeoReport v2",
|
2856
|
-
"fork": false,
|
2857
|
-
"forks": 2,
|
2858
|
-
"git_url": "git://github.com/codeforamerica/open311_php.git",
|
2859
|
-
"homepage": "http://wiki.open311.org/API",
|
2860
|
-
"html_url": "https://github.com/codeforamerica/open311_php",
|
2861
|
-
"id": 1954594,
|
2862
|
-
"language": "PHP",
|
2863
|
-
"master_branch": null,
|
2864
|
-
"name": "open311_php",
|
2865
|
-
"open_issues": 1,
|
2866
|
-
"owner": {
|
2867
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2868
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2869
|
-
"id": 337792,
|
2870
|
-
"login": "codeforamerica",
|
2871
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2872
|
-
},
|
2873
|
-
"private": false,
|
2874
|
-
"pushed_at": "2011-07-25T21:13:55Z",
|
2875
|
-
"size": 124,
|
2876
|
-
"ssh_url": "git@github.com:codeforamerica/open311_php.git",
|
2877
|
-
"svn_url": "https://github.com/codeforamerica/open311_php",
|
2878
|
-
"updated_at": "2011-12-05T22:40:51Z",
|
2879
|
-
"url": "https://api.github.com/repos/codeforamerica/open311_php",
|
2880
|
-
"watchers": 6
|
2881
|
-
},
|
2882
|
-
{
|
2883
|
-
"clone_url": "https://github.com/codeforamerica/epa_ruby.git",
|
2884
|
-
"created_at": "2011-06-27T18:01:22Z",
|
2885
|
-
"description": "A Ruby wrapper for several of the EPA Envirofacts major data sources",
|
2886
|
-
"fork": false,
|
2887
|
-
"forks": 3,
|
2888
|
-
"git_url": "git://github.com/codeforamerica/epa_ruby.git",
|
2889
|
-
"homepage": "",
|
2890
|
-
"html_url": "https://github.com/codeforamerica/epa_ruby",
|
2891
|
-
"id": 1961662,
|
2892
|
-
"language": "Ruby",
|
2893
|
-
"master_branch": null,
|
2894
|
-
"name": "epa_ruby",
|
2895
|
-
"open_issues": 0,
|
2896
|
-
"owner": {
|
2897
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2898
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2899
|
-
"id": 337792,
|
2900
|
-
"login": "codeforamerica",
|
2901
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2902
|
-
},
|
2903
|
-
"private": false,
|
2904
|
-
"pushed_at": "2011-11-02T10:16:19Z",
|
2905
|
-
"size": 112,
|
2906
|
-
"ssh_url": "git@github.com:codeforamerica/epa_ruby.git",
|
2907
|
-
"svn_url": "https://github.com/codeforamerica/epa_ruby",
|
2908
|
-
"updated_at": "2011-11-02T10:16:22Z",
|
2909
|
-
"url": "https://api.github.com/repos/codeforamerica/epa_ruby",
|
2910
|
-
"watchers": 5
|
2911
|
-
},
|
2912
|
-
{
|
2913
|
-
"clone_url": "https://github.com/codeforamerica/epa_python.git",
|
2914
|
-
"created_at": "2011-06-27T18:23:40Z",
|
2915
|
-
"description": "Python wrapper for the multiple APIs available through the EPA",
|
2916
|
-
"fork": false,
|
2917
|
-
"forks": 2,
|
2918
|
-
"git_url": "git://github.com/codeforamerica/epa_python.git",
|
2919
|
-
"homepage": "http://www.epa.gov/enviro/facts/ef_restful.html",
|
2920
|
-
"html_url": "https://github.com/codeforamerica/epa_python",
|
2921
|
-
"id": 1961787,
|
2922
|
-
"language": "Python",
|
2923
|
-
"master_branch": null,
|
2924
|
-
"name": "epa_python",
|
2925
|
-
"open_issues": 0,
|
2926
|
-
"owner": {
|
2927
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2928
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2929
|
-
"id": 337792,
|
2930
|
-
"login": "codeforamerica",
|
2931
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2932
|
-
},
|
2933
|
-
"private": false,
|
2934
|
-
"pushed_at": "2011-08-22T14:58:21Z",
|
2935
|
-
"size": 176,
|
2936
|
-
"ssh_url": "git@github.com:codeforamerica/epa_python.git",
|
2937
|
-
"svn_url": "https://github.com/codeforamerica/epa_python",
|
2938
|
-
"updated_at": "2011-10-04T16:23:53Z",
|
2939
|
-
"url": "https://api.github.com/repos/codeforamerica/epa_python",
|
2940
|
-
"watchers": 5
|
2941
|
-
},
|
2942
|
-
{
|
2943
|
-
"clone_url": "https://github.com/codeforamerica/product_recall_php.git",
|
2944
|
-
"created_at": "2011-06-27T18:24:28Z",
|
2945
|
-
"description": "PHP Library for Product Recall API",
|
2946
|
-
"fork": false,
|
2947
|
-
"forks": 1,
|
2948
|
-
"git_url": "git://github.com/codeforamerica/product_recall_php.git",
|
2949
|
-
"homepage": "http://search.usa.gov/api/recalls",
|
2950
|
-
"html_url": "https://github.com/codeforamerica/product_recall_php",
|
2951
|
-
"id": 1961789,
|
2952
|
-
"language": "PHP",
|
2953
|
-
"master_branch": null,
|
2954
|
-
"name": "product_recall_php",
|
2955
|
-
"open_issues": 0,
|
2956
|
-
"owner": {
|
2957
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2958
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2959
|
-
"id": 337792,
|
2960
|
-
"login": "codeforamerica",
|
2961
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2962
|
-
},
|
2963
|
-
"private": false,
|
2964
|
-
"pushed_at": "2011-07-25T21:06:23Z",
|
2965
|
-
"size": 224,
|
2966
|
-
"ssh_url": "git@github.com:codeforamerica/product_recall_php.git",
|
2967
|
-
"svn_url": "https://github.com/codeforamerica/product_recall_php",
|
2968
|
-
"updated_at": "2011-10-04T16:23:54Z",
|
2969
|
-
"url": "https://api.github.com/repos/codeforamerica/product_recall_php",
|
2970
|
-
"watchers": 2
|
2971
|
-
},
|
2972
|
-
{
|
2973
|
-
"clone_url": "https://github.com/codeforamerica/fed_spending_php.git",
|
2974
|
-
"created_at": "2011-06-27T18:45:00Z",
|
2975
|
-
"description": "PHP Library for Federal Spending API",
|
2976
|
-
"fork": false,
|
2977
|
-
"forks": 1,
|
2978
|
-
"git_url": "git://github.com/codeforamerica/fed_spending_php.git",
|
2979
|
-
"homepage": "http://www.fedspending.org/apidoc.php",
|
2980
|
-
"html_url": "https://github.com/codeforamerica/fed_spending_php",
|
2981
|
-
"id": 1961895,
|
2982
|
-
"language": "PHP",
|
2983
|
-
"master_branch": null,
|
2984
|
-
"name": "fed_spending_php",
|
2985
|
-
"open_issues": 0,
|
2986
|
-
"owner": {
|
2987
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
2988
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
2989
|
-
"id": 337792,
|
2990
|
-
"login": "codeforamerica",
|
2991
|
-
"url": "https://api.github.com/users/codeforamerica"
|
2992
|
-
},
|
2993
|
-
"private": false,
|
2994
|
-
"pushed_at": "2011-07-26T20:54:45Z",
|
2995
|
-
"size": 312,
|
2996
|
-
"ssh_url": "git@github.com:codeforamerica/fed_spending_php.git",
|
2997
|
-
"svn_url": "https://github.com/codeforamerica/fed_spending_php",
|
2998
|
-
"updated_at": "2011-10-04T16:23:55Z",
|
2999
|
-
"url": "https://api.github.com/repos/codeforamerica/fed_spending_php",
|
3000
|
-
"watchers": 1
|
3001
|
-
},
|
3002
|
-
{
|
3003
|
-
"clone_url": "https://github.com/codeforamerica/epa_envirofacts_php.git",
|
3004
|
-
"created_at": "2011-06-27T20:41:46Z",
|
3005
|
-
"description": "",
|
3006
|
-
"fork": false,
|
3007
|
-
"forks": 1,
|
3008
|
-
"git_url": "git://github.com/codeforamerica/epa_envirofacts_php.git",
|
3009
|
-
"homepage": "http://www.epa.gov/enviro/facts/services.html",
|
3010
|
-
"html_url": "https://github.com/codeforamerica/epa_envirofacts_php",
|
3011
|
-
"id": 1962491,
|
3012
|
-
"language": "PHP",
|
3013
|
-
"master_branch": null,
|
3014
|
-
"name": "epa_envirofacts_php",
|
3015
|
-
"open_issues": 0,
|
3016
|
-
"owner": {
|
3017
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3018
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3019
|
-
"id": 337792,
|
3020
|
-
"login": "codeforamerica",
|
3021
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3022
|
-
},
|
3023
|
-
"private": false,
|
3024
|
-
"pushed_at": "2011-06-30T22:13:32Z",
|
3025
|
-
"size": 144,
|
3026
|
-
"ssh_url": "git@github.com:codeforamerica/epa_envirofacts_php.git",
|
3027
|
-
"svn_url": "https://github.com/codeforamerica/epa_envirofacts_php",
|
3028
|
-
"updated_at": "2011-10-04T16:24:09Z",
|
3029
|
-
"url": "https://api.github.com/repos/codeforamerica/epa_envirofacts_php",
|
3030
|
-
"watchers": 2
|
3031
|
-
},
|
3032
|
-
{
|
3033
|
-
"clone_url": "https://github.com/codeforamerica/faa_php.git",
|
3034
|
-
"created_at": "2011-06-28T01:14:44Z",
|
3035
|
-
"description": "PHP Library for FAA API",
|
3036
|
-
"fork": false,
|
3037
|
-
"forks": 1,
|
3038
|
-
"git_url": "git://github.com/codeforamerica/faa_php.git",
|
3039
|
-
"homepage": "http://services.faa.gov/",
|
3040
|
-
"html_url": "https://github.com/codeforamerica/faa_php",
|
3041
|
-
"id": 1963592,
|
3042
|
-
"language": "PHP",
|
3043
|
-
"master_branch": null,
|
3044
|
-
"name": "faa_php",
|
3045
|
-
"open_issues": 0,
|
3046
|
-
"owner": {
|
3047
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3048
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3049
|
-
"id": 337792,
|
3050
|
-
"login": "codeforamerica",
|
3051
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3052
|
-
},
|
3053
|
-
"private": false,
|
3054
|
-
"pushed_at": "2011-08-05T01:40:40Z",
|
3055
|
-
"size": 216,
|
3056
|
-
"ssh_url": "git@github.com:codeforamerica/faa_php.git",
|
3057
|
-
"svn_url": "https://github.com/codeforamerica/faa_php",
|
3058
|
-
"updated_at": "2011-10-04T16:24:33Z",
|
3059
|
-
"url": "https://api.github.com/repos/codeforamerica/faa_php",
|
3060
|
-
"watchers": 2
|
3061
|
-
},
|
3062
|
-
{
|
3063
|
-
"clone_url": "https://github.com/codeforamerica/chronicling-america-php.git",
|
3064
|
-
"created_at": "2011-06-28T03:42:12Z",
|
3065
|
-
"description": "PHP API Library for Chronicling America",
|
3066
|
-
"fork": false,
|
3067
|
-
"forks": 1,
|
3068
|
-
"git_url": "git://github.com/codeforamerica/chronicling-america-php.git",
|
3069
|
-
"homepage": "http://chroniclingamerica.loc.gov/about/api/",
|
3070
|
-
"html_url": "https://github.com/codeforamerica/chronicling-america-php",
|
3071
|
-
"id": 1964085,
|
3072
|
-
"language": "PHP",
|
3073
|
-
"master_branch": null,
|
3074
|
-
"name": "chronicling-america-php",
|
3075
|
-
"open_issues": 0,
|
3076
|
-
"owner": {
|
3077
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3078
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3079
|
-
"id": 337792,
|
3080
|
-
"login": "codeforamerica",
|
3081
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3082
|
-
},
|
3083
|
-
"private": false,
|
3084
|
-
"pushed_at": "2011-08-05T20:56:47Z",
|
3085
|
-
"size": 200,
|
3086
|
-
"ssh_url": "git@github.com:codeforamerica/chronicling-america-php.git",
|
3087
|
-
"svn_url": "https://github.com/codeforamerica/chronicling-america-php",
|
3088
|
-
"updated_at": "2011-10-04T16:24:43Z",
|
3089
|
-
"url": "https://api.github.com/repos/codeforamerica/chronicling-america-php",
|
3090
|
-
"watchers": 6
|
3091
|
-
},
|
3092
|
-
{
|
3093
|
-
"clone_url": "https://github.com/codeforamerica/toxnet_php.git",
|
3094
|
-
"created_at": "2011-06-28T15:31:39Z",
|
3095
|
-
"description": "Toxnet Web Service API Php Library",
|
3096
|
-
"fork": false,
|
3097
|
-
"forks": 1,
|
3098
|
-
"git_url": "git://github.com/codeforamerica/toxnet_php.git",
|
3099
|
-
"homepage": "http://toxnet.nlm.nih.gov/toxnetapi/TOXNETWebService.html",
|
3100
|
-
"html_url": "https://github.com/codeforamerica/toxnet_php",
|
3101
|
-
"id": 1967058,
|
3102
|
-
"language": "PHP",
|
3103
|
-
"master_branch": null,
|
3104
|
-
"name": "toxnet_php",
|
3105
|
-
"open_issues": 0,
|
3106
|
-
"owner": {
|
3107
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3108
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3109
|
-
"id": 337792,
|
3110
|
-
"login": "codeforamerica",
|
3111
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3112
|
-
},
|
3113
|
-
"private": false,
|
3114
|
-
"pushed_at": "2011-08-05T16:42:34Z",
|
3115
|
-
"size": 296,
|
3116
|
-
"ssh_url": "git@github.com:codeforamerica/toxnet_php.git",
|
3117
|
-
"svn_url": "https://github.com/codeforamerica/toxnet_php",
|
3118
|
-
"updated_at": "2011-10-04T16:25:56Z",
|
3119
|
-
"url": "https://api.github.com/repos/codeforamerica/toxnet_php",
|
3120
|
-
"watchers": 2
|
3121
|
-
},
|
3122
|
-
{
|
3123
|
-
"clone_url": "https://github.com/codeforamerica/rxNorm_php.git",
|
3124
|
-
"created_at": "2011-06-28T18:53:37Z",
|
3125
|
-
"description": "RxNorm API PHP Library in REST with SOAP style methods",
|
3126
|
-
"fork": false,
|
3127
|
-
"forks": 1,
|
3128
|
-
"git_url": "git://github.com/codeforamerica/rxNorm_php.git",
|
3129
|
-
"homepage": "http://rxnav.nlm.nih.gov/",
|
3130
|
-
"html_url": "https://github.com/codeforamerica/rxNorm_php",
|
3131
|
-
"id": 1968155,
|
3132
|
-
"language": "PHP",
|
3133
|
-
"master_branch": null,
|
3134
|
-
"name": "rxNorm_php",
|
3135
|
-
"open_issues": 0,
|
3136
|
-
"owner": {
|
3137
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3138
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3139
|
-
"id": 337792,
|
3140
|
-
"login": "codeforamerica",
|
3141
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3142
|
-
},
|
3143
|
-
"private": false,
|
3144
|
-
"pushed_at": "2011-08-06T04:23:54Z",
|
3145
|
-
"size": 368,
|
3146
|
-
"ssh_url": "git@github.com:codeforamerica/rxNorm_php.git",
|
3147
|
-
"svn_url": "https://github.com/codeforamerica/rxNorm_php",
|
3148
|
-
"updated_at": "2011-10-04T16:26:24Z",
|
3149
|
-
"url": "https://api.github.com/repos/codeforamerica/rxNorm_php",
|
3150
|
-
"watchers": 2
|
3151
|
-
},
|
3152
|
-
{
|
3153
|
-
"clone_url": "https://github.com/codeforamerica/pillbox_php.git",
|
3154
|
-
"created_at": "2011-06-28T21:55:53Z",
|
3155
|
-
"description": "PHP Library for Pillbox beta API v2",
|
3156
|
-
"fork": false,
|
3157
|
-
"forks": 1,
|
3158
|
-
"git_url": "git://github.com/codeforamerica/pillbox_php.git",
|
3159
|
-
"homepage": "http://wiki.citizen.apps.gov/pillbox/Main/APIdocumentation",
|
3160
|
-
"html_url": "https://github.com/codeforamerica/pillbox_php",
|
3161
|
-
"id": 1969139,
|
3162
|
-
"language": "PHP",
|
3163
|
-
"master_branch": null,
|
3164
|
-
"name": "pillbox_php",
|
3165
|
-
"open_issues": 0,
|
3166
|
-
"owner": {
|
3167
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3168
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3169
|
-
"id": 337792,
|
3170
|
-
"login": "codeforamerica",
|
3171
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3172
|
-
},
|
3173
|
-
"private": false,
|
3174
|
-
"pushed_at": "2011-07-25T21:50:18Z",
|
3175
|
-
"size": 168,
|
3176
|
-
"ssh_url": "git@github.com:codeforamerica/pillbox_php.git",
|
3177
|
-
"svn_url": "https://github.com/codeforamerica/pillbox_php",
|
3178
|
-
"updated_at": "2011-10-04T16:26:46Z",
|
3179
|
-
"url": "https://api.github.com/repos/codeforamerica/pillbox_php",
|
3180
|
-
"watchers": 2
|
3181
|
-
},
|
3182
|
-
{
|
3183
|
-
"clone_url": "https://github.com/codeforamerica/ndfRT_php.git",
|
3184
|
-
"created_at": "2011-06-28T22:36:59Z",
|
3185
|
-
"description": "NDF-RT API PHP Library REST/XML",
|
3186
|
-
"fork": false,
|
3187
|
-
"forks": 1,
|
3188
|
-
"git_url": "git://github.com/codeforamerica/ndfRT_php.git",
|
3189
|
-
"homepage": "http://rxnav.nlm.nih.gov/NdfrtAPI.html",
|
3190
|
-
"html_url": "https://github.com/codeforamerica/ndfRT_php",
|
3191
|
-
"id": 1969328,
|
3192
|
-
"language": "PHP",
|
3193
|
-
"master_branch": null,
|
3194
|
-
"name": "ndfRT_php",
|
3195
|
-
"open_issues": 0,
|
3196
|
-
"owner": {
|
3197
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3198
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3199
|
-
"id": 337792,
|
3200
|
-
"login": "codeforamerica",
|
3201
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3202
|
-
},
|
3203
|
-
"private": false,
|
3204
|
-
"pushed_at": "2011-08-05T20:51:09Z",
|
3205
|
-
"size": 140,
|
3206
|
-
"ssh_url": "git@github.com:codeforamerica/ndfRT_php.git",
|
3207
|
-
"svn_url": "https://github.com/codeforamerica/ndfRT_php",
|
3208
|
-
"updated_at": "2011-10-04T16:26:51Z",
|
3209
|
-
"url": "https://api.github.com/repos/codeforamerica/ndfRT_php",
|
3210
|
-
"watchers": 2
|
3211
|
-
},
|
3212
|
-
{
|
3213
|
-
"clone_url": "https://github.com/codeforamerica/broadband_map_python.git",
|
3214
|
-
"created_at": "2011-06-29T15:34:46Z",
|
3215
|
-
"description": "Python wrapper for Broadband Map APIs http://broadbandmap.gov/developer",
|
3216
|
-
"fork": false,
|
3217
|
-
"forks": 1,
|
3218
|
-
"git_url": "git://github.com/codeforamerica/broadband_map_python.git",
|
3219
|
-
"homepage": "",
|
3220
|
-
"html_url": "https://github.com/codeforamerica/broadband_map_python",
|
3221
|
-
"id": 1973035,
|
3222
|
-
"language": "Python",
|
3223
|
-
"master_branch": null,
|
3224
|
-
"name": "broadband_map_python",
|
3225
|
-
"open_issues": 0,
|
3226
|
-
"owner": {
|
3227
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3228
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3229
|
-
"id": 337792,
|
3230
|
-
"login": "codeforamerica",
|
3231
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3232
|
-
},
|
3233
|
-
"private": false,
|
3234
|
-
"pushed_at": "2011-08-04T17:37:49Z",
|
3235
|
-
"size": 308,
|
3236
|
-
"ssh_url": "git@github.com:codeforamerica/broadband_map_python.git",
|
3237
|
-
"svn_url": "https://github.com/codeforamerica/broadband_map_python",
|
3238
|
-
"updated_at": "2011-10-04T16:28:11Z",
|
3239
|
-
"url": "https://api.github.com/repos/codeforamerica/broadband_map_python",
|
3240
|
-
"watchers": 1
|
3241
|
-
},
|
3242
|
-
{
|
3243
|
-
"clone_url": "https://github.com/codeforamerica/citizenry.git",
|
3244
|
-
"created_at": "2011-07-04T16:00:29Z",
|
3245
|
-
"description": "Code for America's national version of citizenry ",
|
3246
|
-
"fork": true,
|
3247
|
-
"forks": 0,
|
3248
|
-
"git_url": "git://github.com/codeforamerica/citizenry.git",
|
3249
|
-
"homepage": "http://geeks.codeforamerica.org",
|
3250
|
-
"html_url": "https://github.com/codeforamerica/citizenry",
|
3251
|
-
"id": 1996181,
|
3252
|
-
"language": "JavaScript",
|
3253
|
-
"master_branch": null,
|
3254
|
-
"name": "citizenry",
|
3255
|
-
"open_issues": 0,
|
3256
|
-
"owner": {
|
3257
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3258
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3259
|
-
"id": 337792,
|
3260
|
-
"login": "codeforamerica",
|
3261
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3262
|
-
},
|
3263
|
-
"private": false,
|
3264
|
-
"pushed_at": "2011-07-05T15:55:47Z",
|
3265
|
-
"size": 120,
|
3266
|
-
"ssh_url": "git@github.com:codeforamerica/citizenry.git",
|
3267
|
-
"svn_url": "https://github.com/codeforamerica/citizenry",
|
3268
|
-
"updated_at": "2011-12-05T22:42:32Z",
|
3269
|
-
"url": "https://api.github.com/repos/codeforamerica/citizenry",
|
3270
|
-
"watchers": 2
|
3271
|
-
},
|
3272
|
-
{
|
3273
|
-
"clone_url": "https://github.com/codeforamerica/idea_exchange.git",
|
3274
|
-
"created_at": "2011-07-14T16:40:12Z",
|
3275
|
-
"description": "A user feedback platform inspired by Best Buy's IdeaX.",
|
3276
|
-
"fork": false,
|
3277
|
-
"forks": 2,
|
3278
|
-
"git_url": "git://github.com/codeforamerica/idea_exchange.git",
|
3279
|
-
"homepage": "",
|
3280
|
-
"html_url": "https://github.com/codeforamerica/idea_exchange",
|
3281
|
-
"id": 2048388,
|
3282
|
-
"language": "JavaScript",
|
3283
|
-
"master_branch": null,
|
3284
|
-
"name": "idea_exchange",
|
3285
|
-
"open_issues": 0,
|
3286
|
-
"owner": {
|
3287
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3288
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3289
|
-
"id": 337792,
|
3290
|
-
"login": "codeforamerica",
|
3291
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3292
|
-
},
|
3293
|
-
"private": false,
|
3294
|
-
"pushed_at": "2011-07-14T16:42:06Z",
|
3295
|
-
"size": 200,
|
3296
|
-
"ssh_url": "git@github.com:codeforamerica/idea_exchange.git",
|
3297
|
-
"svn_url": "https://github.com/codeforamerica/idea_exchange",
|
3298
|
-
"updated_at": "2011-10-04T16:57:04Z",
|
3299
|
-
"url": "https://api.github.com/repos/codeforamerica/idea_exchange",
|
3300
|
-
"watchers": 2
|
3301
|
-
},
|
3302
|
-
{
|
3303
|
-
"clone_url": "https://github.com/codeforamerica/open311_facebook.git",
|
3304
|
-
"created_at": "2011-07-15T17:19:43Z",
|
3305
|
-
"description": "This is a Facebook App for cities that use Open311. It can be used as a Facebook Page Tab as well as a web application. ",
|
3306
|
-
"fork": false,
|
3307
|
-
"forks": 1,
|
3308
|
-
"git_url": "git://github.com/codeforamerica/open311_facebook.git",
|
3309
|
-
"homepage": "http://stanfordrosenthal.com/open311",
|
3310
|
-
"html_url": "https://github.com/codeforamerica/open311_facebook",
|
3311
|
-
"id": 2054438,
|
3312
|
-
"language": "PHP",
|
3313
|
-
"master_branch": null,
|
3314
|
-
"name": "open311_facebook",
|
3315
|
-
"open_issues": 0,
|
3316
|
-
"owner": {
|
3317
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3318
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3319
|
-
"id": 337792,
|
3320
|
-
"login": "codeforamerica",
|
3321
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3322
|
-
},
|
3323
|
-
"private": false,
|
3324
|
-
"pushed_at": "2011-08-21T22:03:28Z",
|
3325
|
-
"size": 2652,
|
3326
|
-
"ssh_url": "git@github.com:codeforamerica/open311_facebook.git",
|
3327
|
-
"svn_url": "https://github.com/codeforamerica/open311_facebook",
|
3328
|
-
"updated_at": "2011-10-10T20:15:06Z",
|
3329
|
-
"url": "https://api.github.com/repos/codeforamerica/open311_facebook",
|
3330
|
-
"watchers": 1
|
3331
|
-
},
|
3332
|
-
{
|
3333
|
-
"clone_url": "https://github.com/codeforamerica/Personal-Daily-Brief.git",
|
3334
|
-
"created_at": "2011-07-15T23:50:30Z",
|
3335
|
-
"description": "Scott, Erik, and Michael's Hack for Change project",
|
3336
|
-
"fork": false,
|
3337
|
-
"forks": 1,
|
3338
|
-
"git_url": "git://github.com/codeforamerica/Personal-Daily-Brief.git",
|
3339
|
-
"homepage": "",
|
3340
|
-
"html_url": "https://github.com/codeforamerica/Personal-Daily-Brief",
|
3341
|
-
"id": 2056130,
|
3342
|
-
"language": "Ruby",
|
3343
|
-
"master_branch": null,
|
3344
|
-
"name": "Personal-Daily-Brief",
|
3345
|
-
"open_issues": 0,
|
3346
|
-
"owner": {
|
3347
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3348
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3349
|
-
"id": 337792,
|
3350
|
-
"login": "codeforamerica",
|
3351
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3352
|
-
},
|
3353
|
-
"private": false,
|
3354
|
-
"pushed_at": "2011-07-15T23:52:09Z",
|
3355
|
-
"size": 772,
|
3356
|
-
"ssh_url": "git@github.com:codeforamerica/Personal-Daily-Brief.git",
|
3357
|
-
"svn_url": "https://github.com/codeforamerica/Personal-Daily-Brief",
|
3358
|
-
"updated_at": "2011-10-04T17:00:10Z",
|
3359
|
-
"url": "https://api.github.com/repos/codeforamerica/Personal-Daily-Brief",
|
3360
|
-
"watchers": 1
|
3361
|
-
},
|
3362
|
-
{
|
3363
|
-
"clone_url": "https://github.com/codeforamerica/JobOps.git",
|
3364
|
-
"created_at": "2011-07-18T17:53:42Z",
|
3365
|
-
"description": "Veterans Job Platform",
|
3366
|
-
"fork": false,
|
3367
|
-
"forks": 3,
|
3368
|
-
"git_url": "git://github.com/codeforamerica/JobOps.git",
|
3369
|
-
"homepage": "",
|
3370
|
-
"html_url": "https://github.com/codeforamerica/JobOps",
|
3371
|
-
"id": 2067737,
|
3372
|
-
"language": "Ruby",
|
3373
|
-
"master_branch": null,
|
3374
|
-
"name": "JobOps",
|
3375
|
-
"open_issues": 0,
|
3376
|
-
"owner": {
|
3377
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3378
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3379
|
-
"id": 337792,
|
3380
|
-
"login": "codeforamerica",
|
3381
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3382
|
-
},
|
3383
|
-
"private": false,
|
3384
|
-
"pushed_at": "2011-11-18T17:59:23Z",
|
3385
|
-
"size": 188,
|
3386
|
-
"ssh_url": "git@github.com:codeforamerica/JobOps.git",
|
3387
|
-
"svn_url": "https://github.com/codeforamerica/JobOps",
|
3388
|
-
"updated_at": "2011-11-18T17:59:23Z",
|
3389
|
-
"url": "https://api.github.com/repos/codeforamerica/JobOps",
|
3390
|
-
"watchers": 9
|
3391
|
-
},
|
3392
|
-
{
|
3393
|
-
"clone_url": "https://github.com/codeforamerica/Python-API-Module.git",
|
3394
|
-
"created_at": "2011-07-18T21:34:32Z",
|
3395
|
-
"description": "A base class for Python API wrappers",
|
3396
|
-
"fork": false,
|
3397
|
-
"forks": 2,
|
3398
|
-
"git_url": "git://github.com/codeforamerica/Python-API-Module.git",
|
3399
|
-
"homepage": "",
|
3400
|
-
"html_url": "https://github.com/codeforamerica/Python-API-Module",
|
3401
|
-
"id": 2068959,
|
3402
|
-
"language": "Python",
|
3403
|
-
"master_branch": null,
|
3404
|
-
"name": "Python-API-Module",
|
3405
|
-
"open_issues": 0,
|
3406
|
-
"owner": {
|
3407
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3408
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3409
|
-
"id": 337792,
|
3410
|
-
"login": "codeforamerica",
|
3411
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3412
|
-
},
|
3413
|
-
"private": false,
|
3414
|
-
"pushed_at": "2011-07-18T21:43:05Z",
|
3415
|
-
"size": 128,
|
3416
|
-
"ssh_url": "git@github.com:codeforamerica/Python-API-Module.git",
|
3417
|
-
"svn_url": "https://github.com/codeforamerica/Python-API-Module",
|
3418
|
-
"updated_at": "2011-10-04T17:05:06Z",
|
3419
|
-
"url": "https://api.github.com/repos/codeforamerica/Python-API-Module",
|
3420
|
-
"watchers": 2
|
3421
|
-
},
|
3422
|
-
{
|
3423
|
-
"clone_url": "https://github.com/codeforamerica/mobile-mapper.git",
|
3424
|
-
"created_at": "2011-07-21T21:01:37Z",
|
3425
|
-
"description": "phonegap app that uses jquery-mobile and google maps v3",
|
3426
|
-
"fork": true,
|
3427
|
-
"forks": 0,
|
3428
|
-
"git_url": "git://github.com/codeforamerica/mobile-mapper.git",
|
3429
|
-
"homepage": "http://max.couchone.com/test/401935f5806735e03a93d025b1047ba9/dynamic-map-loading.mov",
|
3430
|
-
"html_url": "https://github.com/codeforamerica/mobile-mapper",
|
3431
|
-
"id": 2085688,
|
3432
|
-
"language": "JavaScript",
|
3433
|
-
"master_branch": null,
|
3434
|
-
"name": "mobile-mapper",
|
3435
|
-
"open_issues": 0,
|
3436
|
-
"owner": {
|
3437
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3438
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3439
|
-
"id": 337792,
|
3440
|
-
"login": "codeforamerica",
|
3441
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3442
|
-
},
|
3443
|
-
"private": false,
|
3444
|
-
"pushed_at": "2011-10-28T18:56:39Z",
|
3445
|
-
"size": 764,
|
3446
|
-
"ssh_url": "git@github.com:codeforamerica/mobile-mapper.git",
|
3447
|
-
"svn_url": "https://github.com/codeforamerica/mobile-mapper",
|
3448
|
-
"updated_at": "2011-12-05T21:47:04Z",
|
3449
|
-
"url": "https://api.github.com/repos/codeforamerica/mobile-mapper",
|
3450
|
-
"watchers": 4
|
3451
|
-
},
|
3452
|
-
{
|
3453
|
-
"clone_url": "https://github.com/codeforamerica/styling_open_data_catalog.git",
|
3454
|
-
"created_at": "2011-07-25T21:20:45Z",
|
3455
|
-
"description": "Static HTML and resources to change the style of the Open Data Catalog.",
|
3456
|
-
"fork": false,
|
3457
|
-
"forks": 1,
|
3458
|
-
"git_url": "git://github.com/codeforamerica/styling_open_data_catalog.git",
|
3459
|
-
"homepage": "",
|
3460
|
-
"html_url": "https://github.com/codeforamerica/styling_open_data_catalog",
|
3461
|
-
"id": 2103550,
|
3462
|
-
"language": "JavaScript",
|
3463
|
-
"master_branch": null,
|
3464
|
-
"name": "styling_open_data_catalog",
|
3465
|
-
"open_issues": 0,
|
3466
|
-
"owner": {
|
3467
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3468
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3469
|
-
"id": 337792,
|
3470
|
-
"login": "codeforamerica",
|
3471
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3472
|
-
},
|
3473
|
-
"private": false,
|
3474
|
-
"pushed_at": "2011-08-04T21:52:47Z",
|
3475
|
-
"size": 1052,
|
3476
|
-
"ssh_url": "git@github.com:codeforamerica/styling_open_data_catalog.git",
|
3477
|
-
"svn_url": "https://github.com/codeforamerica/styling_open_data_catalog",
|
3478
|
-
"updated_at": "2011-12-05T22:40:36Z",
|
3479
|
-
"url": "https://api.github.com/repos/codeforamerica/styling_open_data_catalog",
|
3480
|
-
"watchers": 3
|
3481
|
-
},
|
3482
|
-
{
|
3483
|
-
"clone_url": "https://github.com/codeforamerica/wheresmyschoolbus-redirect.git",
|
3484
|
-
"created_at": "2011-07-26T21:44:04Z",
|
3485
|
-
"description": "Redirect to the new heroku",
|
3486
|
-
"fork": false,
|
3487
|
-
"forks": 1,
|
3488
|
-
"git_url": "git://github.com/codeforamerica/wheresmyschoolbus-redirect.git",
|
3489
|
-
"homepage": "",
|
3490
|
-
"html_url": "https://github.com/codeforamerica/wheresmyschoolbus-redirect",
|
3491
|
-
"id": 2109533,
|
3492
|
-
"language": "Ruby",
|
3493
|
-
"master_branch": null,
|
3494
|
-
"name": "wheresmyschoolbus-redirect",
|
3495
|
-
"open_issues": 0,
|
3496
|
-
"owner": {
|
3497
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3498
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3499
|
-
"id": 337792,
|
3500
|
-
"login": "codeforamerica",
|
3501
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3502
|
-
},
|
3503
|
-
"private": false,
|
3504
|
-
"pushed_at": "2011-08-08T05:27:04Z",
|
3505
|
-
"size": 116,
|
3506
|
-
"ssh_url": "git@github.com:codeforamerica/wheresmyschoolbus-redirect.git",
|
3507
|
-
"svn_url": "https://github.com/codeforamerica/wheresmyschoolbus-redirect",
|
3508
|
-
"updated_at": "2011-10-04T17:21:04Z",
|
3509
|
-
"url": "https://api.github.com/repos/codeforamerica/wheresmyschoolbus-redirect",
|
3510
|
-
"watchers": 1
|
3511
|
-
},
|
3512
|
-
{
|
3513
|
-
"clone_url": "https://github.com/codeforamerica/disastermath.git",
|
3514
|
-
"created_at": "2011-07-29T23:04:13Z",
|
3515
|
-
"description": "",
|
3516
|
-
"fork": false,
|
3517
|
-
"forks": 1,
|
3518
|
-
"git_url": "git://github.com/codeforamerica/disastermath.git",
|
3519
|
-
"homepage": "",
|
3520
|
-
"html_url": "https://github.com/codeforamerica/disastermath",
|
3521
|
-
"id": 2126769,
|
3522
|
-
"language": "JavaScript",
|
3523
|
-
"master_branch": null,
|
3524
|
-
"name": "disastermath",
|
3525
|
-
"open_issues": 0,
|
3526
|
-
"owner": {
|
3527
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3528
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3529
|
-
"id": 337792,
|
3530
|
-
"login": "codeforamerica",
|
3531
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3532
|
-
},
|
3533
|
-
"private": false,
|
3534
|
-
"pushed_at": "2011-08-11T19:55:32Z",
|
3535
|
-
"size": 13708,
|
3536
|
-
"ssh_url": "git@github.com:codeforamerica/disastermath.git",
|
3537
|
-
"svn_url": "https://github.com/codeforamerica/disastermath",
|
3538
|
-
"updated_at": "2011-10-04T17:27:53Z",
|
3539
|
-
"url": "https://api.github.com/repos/codeforamerica/disastermath",
|
3540
|
-
"watchers": 1
|
3541
|
-
},
|
3542
|
-
{
|
3543
|
-
"clone_url": "https://github.com/codeforamerica/cfa-dashboard-internal.git",
|
3544
|
-
"created_at": "2011-08-04T00:38:17Z",
|
3545
|
-
"description": "Internal dashboard for the CfA office.",
|
3546
|
-
"fork": false,
|
3547
|
-
"forks": 1,
|
3548
|
-
"git_url": "git://github.com/codeforamerica/cfa-dashboard-internal.git",
|
3549
|
-
"homepage": "http://codeforamerica.org",
|
3550
|
-
"html_url": "https://github.com/codeforamerica/cfa-dashboard-internal",
|
3551
|
-
"id": 2151933,
|
3552
|
-
"language": null,
|
3553
|
-
"master_branch": null,
|
3554
|
-
"name": "cfa-dashboard-internal",
|
3555
|
-
"open_issues": 0,
|
3556
|
-
"owner": {
|
3557
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3558
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3559
|
-
"id": 337792,
|
3560
|
-
"login": "codeforamerica",
|
3561
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3562
|
-
},
|
3563
|
-
"private": false,
|
3564
|
-
"pushed_at": "2011-08-04T01:06:16Z",
|
3565
|
-
"size": 96,
|
3566
|
-
"ssh_url": "git@github.com:codeforamerica/cfa-dashboard-internal.git",
|
3567
|
-
"svn_url": "https://github.com/codeforamerica/cfa-dashboard-internal",
|
3568
|
-
"updated_at": "2011-10-04T17:37:59Z",
|
3569
|
-
"url": "https://api.github.com/repos/codeforamerica/cfa-dashboard-internal",
|
3570
|
-
"watchers": 1
|
3571
|
-
},
|
3572
|
-
{
|
3573
|
-
"clone_url": "https://github.com/codeforamerica/open_data_upload.git",
|
3574
|
-
"created_at": "2011-08-05T15:21:36Z",
|
3575
|
-
"description": "",
|
3576
|
-
"fork": false,
|
3577
|
-
"forks": 1,
|
3578
|
-
"git_url": "git://github.com/codeforamerica/open_data_upload.git",
|
3579
|
-
"homepage": "",
|
3580
|
-
"html_url": "https://github.com/codeforamerica/open_data_upload",
|
3581
|
-
"id": 2160980,
|
3582
|
-
"language": "JavaScript",
|
3583
|
-
"master_branch": null,
|
3584
|
-
"name": "open_data_upload",
|
3585
|
-
"open_issues": 0,
|
3586
|
-
"owner": {
|
3587
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3588
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3589
|
-
"id": 337792,
|
3590
|
-
"login": "codeforamerica",
|
3591
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3592
|
-
},
|
3593
|
-
"private": false,
|
3594
|
-
"pushed_at": "2011-08-05T23:11:39Z",
|
3595
|
-
"size": 828,
|
3596
|
-
"ssh_url": "git@github.com:codeforamerica/open_data_upload.git",
|
3597
|
-
"svn_url": "https://github.com/codeforamerica/open_data_upload",
|
3598
|
-
"updated_at": "2011-10-04T17:41:34Z",
|
3599
|
-
"url": "https://api.github.com/repos/codeforamerica/open_data_upload",
|
3600
|
-
"watchers": 1
|
3601
|
-
},
|
3602
|
-
{
|
3603
|
-
"clone_url": "https://github.com/codeforamerica/rxNormRef_php.git",
|
3604
|
-
"created_at": "2011-08-08T22:21:48Z",
|
3605
|
-
"description": "Web Application for rxNorm API - Semantic Drug Reference Tool",
|
3606
|
-
"fork": false,
|
3607
|
-
"forks": 2,
|
3608
|
-
"git_url": "git://github.com/codeforamerica/rxNormRef_php.git",
|
3609
|
-
"homepage": "",
|
3610
|
-
"html_url": "https://github.com/codeforamerica/rxNormRef_php",
|
3611
|
-
"id": 2176252,
|
3612
|
-
"language": "PHP",
|
3613
|
-
"master_branch": null,
|
3614
|
-
"name": "rxNormRef_php",
|
3615
|
-
"open_issues": 0,
|
3616
|
-
"owner": {
|
3617
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3618
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3619
|
-
"id": 337792,
|
3620
|
-
"login": "codeforamerica",
|
3621
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3622
|
-
},
|
3623
|
-
"private": false,
|
3624
|
-
"pushed_at": "2011-08-10T04:13:17Z",
|
3625
|
-
"size": 268,
|
3626
|
-
"ssh_url": "git@github.com:codeforamerica/rxNormRef_php.git",
|
3627
|
-
"svn_url": "https://github.com/codeforamerica/rxNormRef_php",
|
3628
|
-
"updated_at": "2011-10-04T17:47:42Z",
|
3629
|
-
"url": "https://api.github.com/repos/codeforamerica/rxNormRef_php",
|
3630
|
-
"watchers": 3
|
3631
|
-
},
|
3632
|
-
{
|
3633
|
-
"clone_url": "https://github.com/codeforamerica/citygories.git",
|
3634
|
-
"created_at": "2011-08-10T04:45:47Z",
|
3635
|
-
"description": "A web service that provides related terms for concepts in cities.",
|
3636
|
-
"fork": false,
|
3637
|
-
"forks": 1,
|
3638
|
-
"git_url": "git://github.com/codeforamerica/citygories.git",
|
3639
|
-
"homepage": "",
|
3640
|
-
"html_url": "https://github.com/codeforamerica/citygories",
|
3641
|
-
"id": 2183359,
|
3642
|
-
"language": "PHP",
|
3643
|
-
"master_branch": null,
|
3644
|
-
"name": "citygories",
|
3645
|
-
"open_issues": 0,
|
3646
|
-
"owner": {
|
3647
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3648
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3649
|
-
"id": 337792,
|
3650
|
-
"login": "codeforamerica",
|
3651
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3652
|
-
},
|
3653
|
-
"private": false,
|
3654
|
-
"pushed_at": "2011-08-10T04:53:08Z",
|
3655
|
-
"size": 100,
|
3656
|
-
"ssh_url": "git@github.com:codeforamerica/citygories.git",
|
3657
|
-
"svn_url": "https://github.com/codeforamerica/citygories",
|
3658
|
-
"updated_at": "2011-10-04T17:50:35Z",
|
3659
|
-
"url": "https://api.github.com/repos/codeforamerica/citygories",
|
3660
|
-
"watchers": 1
|
3661
|
-
},
|
3662
|
-
{
|
3663
|
-
"clone_url": "https://github.com/codeforamerica/schoolselection.git",
|
3664
|
-
"created_at": "2011-08-11T06:48:51Z",
|
3665
|
-
"description": "",
|
3666
|
-
"fork": false,
|
3667
|
-
"forks": 3,
|
3668
|
-
"git_url": "git://github.com/codeforamerica/schoolselection.git",
|
3669
|
-
"homepage": "",
|
3670
|
-
"html_url": "https://github.com/codeforamerica/schoolselection",
|
3671
|
-
"id": 2189618,
|
3672
|
-
"language": "Ruby",
|
3673
|
-
"master_branch": null,
|
3674
|
-
"name": "schoolselection",
|
3675
|
-
"open_issues": 1,
|
3676
|
-
"owner": {
|
3677
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3678
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3679
|
-
"id": 337792,
|
3680
|
-
"login": "codeforamerica",
|
3681
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3682
|
-
},
|
3683
|
-
"private": false,
|
3684
|
-
"pushed_at": "2011-12-01T21:03:19Z",
|
3685
|
-
"size": 200,
|
3686
|
-
"ssh_url": "git@github.com:codeforamerica/schoolselection.git",
|
3687
|
-
"svn_url": "https://github.com/codeforamerica/schoolselection",
|
3688
|
-
"updated_at": "2011-12-21T22:12:25Z",
|
3689
|
-
"url": "https://api.github.com/repos/codeforamerica/schoolselection",
|
3690
|
-
"watchers": 8
|
3691
|
-
},
|
3692
|
-
{
|
3693
|
-
"clone_url": "https://github.com/codeforamerica/SFGISViewer.git",
|
3694
|
-
"created_at": "2011-08-11T22:11:49Z",
|
3695
|
-
"description": "Esri Flex Viewer on San Francisco GIS Data",
|
3696
|
-
"fork": false,
|
3697
|
-
"forks": 1,
|
3698
|
-
"git_url": "git://github.com/codeforamerica/SFGISViewer.git",
|
3699
|
-
"homepage": "",
|
3700
|
-
"html_url": "https://github.com/codeforamerica/SFGISViewer",
|
3701
|
-
"id": 2194078,
|
3702
|
-
"language": "JavaScript",
|
3703
|
-
"master_branch": null,
|
3704
|
-
"name": "SFGISViewer",
|
3705
|
-
"open_issues": 0,
|
3706
|
-
"owner": {
|
3707
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3708
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3709
|
-
"id": 337792,
|
3710
|
-
"login": "codeforamerica",
|
3711
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3712
|
-
},
|
3713
|
-
"private": false,
|
3714
|
-
"pushed_at": "2011-08-11T22:12:20Z",
|
3715
|
-
"size": 4924,
|
3716
|
-
"ssh_url": "git@github.com:codeforamerica/SFGISViewer.git",
|
3717
|
-
"svn_url": "https://github.com/codeforamerica/SFGISViewer",
|
3718
|
-
"updated_at": "2011-10-04T17:55:01Z",
|
3719
|
-
"url": "https://api.github.com/repos/codeforamerica/SFGISViewer",
|
3720
|
-
"watchers": 1
|
3721
|
-
},
|
3722
|
-
{
|
3723
|
-
"clone_url": "https://github.com/codeforamerica/arcgis.git",
|
3724
|
-
"created_at": "2011-08-15T21:35:08Z",
|
3725
|
-
"description": "",
|
3726
|
-
"fork": false,
|
3727
|
-
"forks": 2,
|
3728
|
-
"git_url": "git://github.com/codeforamerica/arcgis.git",
|
3729
|
-
"homepage": "",
|
3730
|
-
"html_url": "https://github.com/codeforamerica/arcgis",
|
3731
|
-
"id": 2212424,
|
3732
|
-
"language": "Ruby",
|
3733
|
-
"master_branch": null,
|
3734
|
-
"name": "arcgis",
|
3735
|
-
"open_issues": 0,
|
3736
|
-
"owner": {
|
3737
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3738
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3739
|
-
"id": 337792,
|
3740
|
-
"login": "codeforamerica",
|
3741
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3742
|
-
},
|
3743
|
-
"private": false,
|
3744
|
-
"pushed_at": "2011-08-16T20:51:02Z",
|
3745
|
-
"size": 96,
|
3746
|
-
"ssh_url": "git@github.com:codeforamerica/arcgis.git",
|
3747
|
-
"svn_url": "https://github.com/codeforamerica/arcgis",
|
3748
|
-
"updated_at": "2011-11-09T17:40:23Z",
|
3749
|
-
"url": "https://api.github.com/repos/codeforamerica/arcgis",
|
3750
|
-
"watchers": 2
|
3751
|
-
},
|
3752
|
-
{
|
3753
|
-
"clone_url": "https://github.com/codeforamerica/iconathon.git",
|
3754
|
-
"created_at": "2011-08-17T06:23:45Z",
|
3755
|
-
"description": "Website for Iconathon",
|
3756
|
-
"fork": false,
|
3757
|
-
"forks": 1,
|
3758
|
-
"git_url": "git://github.com/codeforamerica/iconathon.git",
|
3759
|
-
"homepage": "http://iconathon.org",
|
3760
|
-
"html_url": "https://github.com/codeforamerica/iconathon",
|
3761
|
-
"id": 2220197,
|
3762
|
-
"language": "PHP",
|
3763
|
-
"master_branch": null,
|
3764
|
-
"name": "iconathon",
|
3765
|
-
"open_issues": 0,
|
3766
|
-
"owner": {
|
3767
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3768
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3769
|
-
"id": 337792,
|
3770
|
-
"login": "codeforamerica",
|
3771
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3772
|
-
},
|
3773
|
-
"private": false,
|
3774
|
-
"pushed_at": "2011-12-15T23:18:44Z",
|
3775
|
-
"size": 55600,
|
3776
|
-
"ssh_url": "git@github.com:codeforamerica/iconathon.git",
|
3777
|
-
"svn_url": "https://github.com/codeforamerica/iconathon",
|
3778
|
-
"updated_at": "2011-12-15T23:19:26Z",
|
3779
|
-
"url": "https://api.github.com/repos/codeforamerica/iconathon",
|
3780
|
-
"watchers": 2
|
3781
|
-
},
|
3782
|
-
{
|
3783
|
-
"clone_url": "https://github.com/codeforamerica/public_art_finder.git",
|
3784
|
-
"created_at": "2011-08-17T19:19:53Z",
|
3785
|
-
"description": "All the stuff needed to get a barebones Public Art Finder mobile website setup in your city.",
|
3786
|
-
"fork": false,
|
3787
|
-
"forks": 4,
|
3788
|
-
"git_url": "git://github.com/codeforamerica/public_art_finder.git",
|
3789
|
-
"homepage": "",
|
3790
|
-
"html_url": "https://github.com/codeforamerica/public_art_finder",
|
3791
|
-
"id": 2223802,
|
3792
|
-
"language": "JavaScript",
|
3793
|
-
"master_branch": null,
|
3794
|
-
"name": "public_art_finder",
|
3795
|
-
"open_issues": 0,
|
3796
|
-
"owner": {
|
3797
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3798
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3799
|
-
"id": 337792,
|
3800
|
-
"login": "codeforamerica",
|
3801
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3802
|
-
},
|
3803
|
-
"private": false,
|
3804
|
-
"pushed_at": "2011-11-20T16:58:39Z",
|
3805
|
-
"size": 112,
|
3806
|
-
"ssh_url": "git@github.com:codeforamerica/public_art_finder.git",
|
3807
|
-
"svn_url": "https://github.com/codeforamerica/public_art_finder",
|
3808
|
-
"updated_at": "2011-11-20T16:58:39Z",
|
3809
|
-
"url": "https://api.github.com/repos/codeforamerica/public_art_finder",
|
3810
|
-
"watchers": 6
|
3811
|
-
},
|
3812
|
-
{
|
3813
|
-
"clone_url": "https://github.com/codeforamerica/transparencyjobs.git",
|
3814
|
-
"created_at": "2011-08-18T23:35:52Z",
|
3815
|
-
"description": "A job listing site for the transparency community",
|
3816
|
-
"fork": true,
|
3817
|
-
"forks": 0,
|
3818
|
-
"git_url": "git://github.com/codeforamerica/transparencyjobs.git",
|
3819
|
-
"homepage": "http://transparencyjobs.com",
|
3820
|
-
"html_url": "https://github.com/codeforamerica/transparencyjobs",
|
3821
|
-
"id": 2231042,
|
3822
|
-
"language": "Python",
|
3823
|
-
"master_branch": null,
|
3824
|
-
"name": "transparencyjobs",
|
3825
|
-
"open_issues": 0,
|
3826
|
-
"owner": {
|
3827
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3828
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3829
|
-
"id": 337792,
|
3830
|
-
"login": "codeforamerica",
|
3831
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3832
|
-
},
|
3833
|
-
"private": false,
|
3834
|
-
"pushed_at": "2011-03-28T17:37:15Z",
|
3835
|
-
"size": 424,
|
3836
|
-
"ssh_url": "git@github.com:codeforamerica/transparencyjobs.git",
|
3837
|
-
"svn_url": "https://github.com/codeforamerica/transparencyjobs",
|
3838
|
-
"updated_at": "2011-12-05T22:48:22Z",
|
3839
|
-
"url": "https://api.github.com/repos/codeforamerica/transparencyjobs",
|
3840
|
-
"watchers": 2
|
3841
|
-
},
|
3842
|
-
{
|
3843
|
-
"clone_url": "https://github.com/codeforamerica/countdown.git",
|
3844
|
-
"created_at": "2011-08-19T06:50:12Z",
|
3845
|
-
"description": "Google I/O style countdown timer using Sinatra and Ruby",
|
3846
|
-
"fork": false,
|
3847
|
-
"forks": 1,
|
3848
|
-
"git_url": "git://github.com/codeforamerica/countdown.git",
|
3849
|
-
"homepage": "http://cfa-countdown.heroku.com/",
|
3850
|
-
"html_url": "https://github.com/codeforamerica/countdown",
|
3851
|
-
"id": 2232514,
|
3852
|
-
"language": "JavaScript",
|
3853
|
-
"master_branch": null,
|
3854
|
-
"name": "countdown",
|
3855
|
-
"open_issues": 0,
|
3856
|
-
"owner": {
|
3857
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3858
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3859
|
-
"id": 337792,
|
3860
|
-
"login": "codeforamerica",
|
3861
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3862
|
-
},
|
3863
|
-
"private": false,
|
3864
|
-
"pushed_at": "2011-11-29T01:28:43Z",
|
3865
|
-
"size": 240,
|
3866
|
-
"ssh_url": "git@github.com:codeforamerica/countdown.git",
|
3867
|
-
"svn_url": "https://github.com/codeforamerica/countdown",
|
3868
|
-
"updated_at": "2011-11-29T01:28:45Z",
|
3869
|
-
"url": "https://api.github.com/repos/codeforamerica/countdown",
|
3870
|
-
"watchers": 2
|
3871
|
-
},
|
3872
|
-
{
|
3873
|
-
"clone_url": "https://github.com/codeforamerica/open_data_catalog.git",
|
3874
|
-
"created_at": "2011-08-24T07:12:23Z",
|
3875
|
-
"description": "A Django web application to help cities easily create an open data catalog.",
|
3876
|
-
"fork": false,
|
3877
|
-
"forks": 4,
|
3878
|
-
"git_url": "git://github.com/codeforamerica/open_data_catalog.git",
|
3879
|
-
"homepage": "",
|
3880
|
-
"html_url": "https://github.com/codeforamerica/open_data_catalog",
|
3881
|
-
"id": 2260119,
|
3882
|
-
"language": "JavaScript",
|
3883
|
-
"master_branch": null,
|
3884
|
-
"name": "open_data_catalog",
|
3885
|
-
"open_issues": 0,
|
3886
|
-
"owner": {
|
3887
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3888
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3889
|
-
"id": 337792,
|
3890
|
-
"login": "codeforamerica",
|
3891
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3892
|
-
},
|
3893
|
-
"private": false,
|
3894
|
-
"pushed_at": "2011-10-31T18:45:25Z",
|
3895
|
-
"size": 204,
|
3896
|
-
"ssh_url": "git@github.com:codeforamerica/open_data_catalog.git",
|
3897
|
-
"svn_url": "https://github.com/codeforamerica/open_data_catalog",
|
3898
|
-
"updated_at": "2011-12-09T23:16:04Z",
|
3899
|
-
"url": "https://api.github.com/repos/codeforamerica/open_data_catalog",
|
3900
|
-
"watchers": 8
|
3901
|
-
},
|
3902
|
-
{
|
3903
|
-
"clone_url": "https://github.com/codeforamerica/Craigslist-Redux.git",
|
3904
|
-
"created_at": "2011-09-23T21:16:06Z",
|
3905
|
-
"description": "A set of stylesheets and a JS bookmarklet to apply design to Craigslist",
|
3906
|
-
"fork": false,
|
3907
|
-
"forks": 2,
|
3908
|
-
"git_url": "git://github.com/codeforamerica/Craigslist-Redux.git",
|
3909
|
-
"homepage": "",
|
3910
|
-
"html_url": "https://github.com/codeforamerica/Craigslist-Redux",
|
3911
|
-
"id": 2446830,
|
3912
|
-
"language": "JavaScript",
|
3913
|
-
"master_branch": null,
|
3914
|
-
"name": "Craigslist-Redux",
|
3915
|
-
"open_issues": 0,
|
3916
|
-
"owner": {
|
3917
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3918
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3919
|
-
"id": 337792,
|
3920
|
-
"login": "codeforamerica",
|
3921
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3922
|
-
},
|
3923
|
-
"private": false,
|
3924
|
-
"pushed_at": "2011-12-13T21:52:33Z",
|
3925
|
-
"size": 232,
|
3926
|
-
"ssh_url": "git@github.com:codeforamerica/Craigslist-Redux.git",
|
3927
|
-
"svn_url": "https://github.com/codeforamerica/Craigslist-Redux",
|
3928
|
-
"updated_at": "2011-12-13T21:52:34Z",
|
3929
|
-
"url": "https://api.github.com/repos/codeforamerica/Craigslist-Redux",
|
3930
|
-
"watchers": 2
|
3931
|
-
},
|
3932
|
-
{
|
3933
|
-
"clone_url": "https://github.com/codeforamerica/Sinatrafied-Buzzword-Bingo.git",
|
3934
|
-
"created_at": "2011-10-12T02:53:44Z",
|
3935
|
-
"description": "Meetings just became more interesting... (Ruby Sinatra)",
|
3936
|
-
"fork": true,
|
3937
|
-
"forks": 0,
|
3938
|
-
"git_url": "git://github.com/codeforamerica/Sinatrafied-Buzzword-Bingo.git",
|
3939
|
-
"homepage": "",
|
3940
|
-
"html_url": "https://github.com/codeforamerica/Sinatrafied-Buzzword-Bingo",
|
3941
|
-
"id": 2559819,
|
3942
|
-
"language": "Ruby",
|
3943
|
-
"master_branch": null,
|
3944
|
-
"name": "Sinatrafied-Buzzword-Bingo",
|
3945
|
-
"open_issues": 0,
|
3946
|
-
"owner": {
|
3947
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3948
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3949
|
-
"id": 337792,
|
3950
|
-
"login": "codeforamerica",
|
3951
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3952
|
-
},
|
3953
|
-
"private": false,
|
3954
|
-
"pushed_at": "2011-10-12T18:22:11Z",
|
3955
|
-
"size": 108,
|
3956
|
-
"ssh_url": "git@github.com:codeforamerica/Sinatrafied-Buzzword-Bingo.git",
|
3957
|
-
"svn_url": "https://github.com/codeforamerica/Sinatrafied-Buzzword-Bingo",
|
3958
|
-
"updated_at": "2011-10-12T18:22:18Z",
|
3959
|
-
"url": "https://api.github.com/repos/codeforamerica/Sinatrafied-Buzzword-Bingo",
|
3960
|
-
"watchers": 1
|
3961
|
-
},
|
3962
|
-
{
|
3963
|
-
"clone_url": "https://github.com/codeforamerica/boston-scrapers.git",
|
3964
|
-
"created_at": "2011-10-20T18:48:02Z",
|
3965
|
-
"description": "Scripts and programs to extract data from the City of Boston",
|
3966
|
-
"fork": false,
|
3967
|
-
"forks": 1,
|
3968
|
-
"git_url": "git://github.com/codeforamerica/boston-scrapers.git",
|
3969
|
-
"homepage": "http://datacouch.com/newurbanmechs",
|
3970
|
-
"html_url": "https://github.com/codeforamerica/boston-scrapers",
|
3971
|
-
"id": 2615339,
|
3972
|
-
"language": "JavaScript",
|
3973
|
-
"master_branch": null,
|
3974
|
-
"name": "boston-scrapers",
|
3975
|
-
"open_issues": 0,
|
3976
|
-
"owner": {
|
3977
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
3978
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
3979
|
-
"id": 337792,
|
3980
|
-
"login": "codeforamerica",
|
3981
|
-
"url": "https://api.github.com/users/codeforamerica"
|
3982
|
-
},
|
3983
|
-
"private": false,
|
3984
|
-
"pushed_at": "2011-10-27T19:18:50Z",
|
3985
|
-
"size": 132,
|
3986
|
-
"ssh_url": "git@github.com:codeforamerica/boston-scrapers.git",
|
3987
|
-
"svn_url": "https://github.com/codeforamerica/boston-scrapers",
|
3988
|
-
"updated_at": "2011-10-27T19:18:51Z",
|
3989
|
-
"url": "https://api.github.com/repos/codeforamerica/boston-scrapers",
|
3990
|
-
"watchers": 2
|
3991
|
-
},
|
3992
|
-
{
|
3993
|
-
"clone_url": "https://github.com/codeforamerica/esri_track_to_couch.git",
|
3994
|
-
"created_at": "2011-10-20T18:58:52Z",
|
3995
|
-
"description": "",
|
3996
|
-
"fork": false,
|
3997
|
-
"forks": 2,
|
3998
|
-
"git_url": "git://github.com/codeforamerica/esri_track_to_couch.git",
|
3999
|
-
"homepage": "",
|
4000
|
-
"html_url": "https://github.com/codeforamerica/esri_track_to_couch",
|
4001
|
-
"id": 2615443,
|
4002
|
-
"language": "Java",
|
4003
|
-
"master_branch": null,
|
4004
|
-
"name": "esri_track_to_couch",
|
4005
|
-
"open_issues": 0,
|
4006
|
-
"owner": {
|
4007
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
4008
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
4009
|
-
"id": 337792,
|
4010
|
-
"login": "codeforamerica",
|
4011
|
-
"url": "https://api.github.com/users/codeforamerica"
|
4012
|
-
},
|
4013
|
-
"private": false,
|
4014
|
-
"pushed_at": "2011-10-20T19:34:01Z",
|
4015
|
-
"size": 96,
|
4016
|
-
"ssh_url": "git@github.com:codeforamerica/esri_track_to_couch.git",
|
4017
|
-
"svn_url": "https://github.com/codeforamerica/esri_track_to_couch",
|
4018
|
-
"updated_at": "2011-11-09T17:39:48Z",
|
4019
|
-
"url": "https://api.github.com/repos/codeforamerica/esri_track_to_couch",
|
4020
|
-
"watchers": 2
|
4021
|
-
},
|
4022
|
-
{
|
4023
|
-
"clone_url": "https://github.com/codeforamerica/hello-dog.git",
|
4024
|
-
"created_at": "2011-10-25T20:11:10Z",
|
4025
|
-
"description": "Our Campfire bot based on Hubot",
|
4026
|
-
"fork": false,
|
4027
|
-
"forks": 2,
|
4028
|
-
"git_url": "git://github.com/codeforamerica/hello-dog.git",
|
4029
|
-
"homepage": "",
|
4030
|
-
"html_url": "https://github.com/codeforamerica/hello-dog",
|
4031
|
-
"id": 2646244,
|
4032
|
-
"language": "CoffeeScript",
|
4033
|
-
"master_branch": null,
|
4034
|
-
"name": "hello-dog",
|
4035
|
-
"open_issues": 0,
|
4036
|
-
"owner": {
|
4037
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
4038
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
4039
|
-
"id": 337792,
|
4040
|
-
"login": "codeforamerica",
|
4041
|
-
"url": "https://api.github.com/users/codeforamerica"
|
4042
|
-
},
|
4043
|
-
"private": false,
|
4044
|
-
"pushed_at": "2011-11-05T00:46:38Z",
|
4045
|
-
"size": 288,
|
4046
|
-
"ssh_url": "git@github.com:codeforamerica/hello-dog.git",
|
4047
|
-
"svn_url": "https://github.com/codeforamerica/hello-dog",
|
4048
|
-
"updated_at": "2011-11-09T17:39:30Z",
|
4049
|
-
"url": "https://api.github.com/repos/codeforamerica/hello-dog",
|
4050
|
-
"watchers": 2
|
4051
|
-
},
|
4052
|
-
{
|
4053
|
-
"clone_url": "https://github.com/codeforamerica/sfpark.git",
|
4054
|
-
"created_at": "2011-10-27T21:49:34Z",
|
4055
|
-
"description": "Ruby library for the SFPark api",
|
4056
|
-
"fork": false,
|
4057
|
-
"forks": 1,
|
4058
|
-
"git_url": "git://github.com/codeforamerica/sfpark.git",
|
4059
|
-
"homepage": "",
|
4060
|
-
"html_url": "https://github.com/codeforamerica/sfpark",
|
4061
|
-
"id": 2661489,
|
4062
|
-
"language": "Ruby",
|
4063
|
-
"master_branch": null,
|
4064
|
-
"name": "sfpark",
|
4065
|
-
"open_issues": 0,
|
4066
|
-
"owner": {
|
4067
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
4068
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
4069
|
-
"id": 337792,
|
4070
|
-
"login": "codeforamerica",
|
4071
|
-
"url": "https://api.github.com/users/codeforamerica"
|
4072
|
-
},
|
4073
|
-
"private": false,
|
4074
|
-
"pushed_at": "2011-11-02T10:27:11Z",
|
4075
|
-
"size": 232,
|
4076
|
-
"ssh_url": "git@github.com:codeforamerica/sfpark.git",
|
4077
|
-
"svn_url": "https://github.com/codeforamerica/sfpark",
|
4078
|
-
"updated_at": "2011-11-11T22:40:35Z",
|
4079
|
-
"url": "https://api.github.com/repos/codeforamerica/sfpark",
|
4080
|
-
"watchers": 3
|
4081
|
-
},
|
4082
|
-
{
|
4083
|
-
"clone_url": "https://github.com/codeforamerica/FellowsExchange.git",
|
4084
|
-
"created_at": "2011-10-31T20:50:52Z",
|
4085
|
-
"description": "A way for Fellows to exchange skill sets",
|
4086
|
-
"fork": false,
|
4087
|
-
"forks": 1,
|
4088
|
-
"git_url": "git://github.com/codeforamerica/FellowsExchange.git",
|
4089
|
-
"homepage": "",
|
4090
|
-
"html_url": "https://github.com/codeforamerica/FellowsExchange",
|
4091
|
-
"id": 2683560,
|
4092
|
-
"language": "Ruby",
|
4093
|
-
"master_branch": null,
|
4094
|
-
"name": "FellowsExchange",
|
4095
|
-
"open_issues": 0,
|
4096
|
-
"owner": {
|
4097
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
4098
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
4099
|
-
"id": 337792,
|
4100
|
-
"login": "codeforamerica",
|
4101
|
-
"url": "https://api.github.com/users/codeforamerica"
|
4102
|
-
},
|
4103
|
-
"private": false,
|
4104
|
-
"pushed_at": "2011-11-10T20:05:57Z",
|
4105
|
-
"size": 540,
|
4106
|
-
"ssh_url": "git@github.com:codeforamerica/FellowsExchange.git",
|
4107
|
-
"svn_url": "https://github.com/codeforamerica/FellowsExchange",
|
4108
|
-
"updated_at": "2011-11-10T20:05:57Z",
|
4109
|
-
"url": "https://api.github.com/repos/codeforamerica/FellowsExchange",
|
4110
|
-
"watchers": 1
|
4111
|
-
},
|
4112
|
-
{
|
4113
|
-
"clone_url": "https://github.com/codeforamerica/twitter-endorse.git",
|
4114
|
-
"created_at": "2011-10-31T23:14:25Z",
|
4115
|
-
"description": "",
|
4116
|
-
"fork": false,
|
4117
|
-
"forks": 1,
|
4118
|
-
"git_url": "git://github.com/codeforamerica/twitter-endorse.git",
|
4119
|
-
"homepage": "",
|
4120
|
-
"html_url": "https://github.com/codeforamerica/twitter-endorse",
|
4121
|
-
"id": 2684343,
|
4122
|
-
"language": "JavaScript",
|
4123
|
-
"master_branch": null,
|
4124
|
-
"name": "twitter-endorse",
|
4125
|
-
"open_issues": 0,
|
4126
|
-
"owner": {
|
4127
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
4128
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
4129
|
-
"id": 337792,
|
4130
|
-
"login": "codeforamerica",
|
4131
|
-
"url": "https://api.github.com/users/codeforamerica"
|
4132
|
-
},
|
4133
|
-
"private": false,
|
4134
|
-
"pushed_at": "2011-11-01T00:05:45Z",
|
4135
|
-
"size": 924,
|
4136
|
-
"ssh_url": "git@github.com:codeforamerica/twitter-endorse.git",
|
4137
|
-
"svn_url": "https://github.com/codeforamerica/twitter-endorse",
|
4138
|
-
"updated_at": "2011-11-01T00:05:47Z",
|
4139
|
-
"url": "https://api.github.com/repos/codeforamerica/twitter-endorse",
|
4140
|
-
"watchers": 1
|
4141
|
-
},
|
4142
|
-
{
|
4143
|
-
"clone_url": "https://github.com/codeforamerica/cbu-seattle-legacy.git",
|
4144
|
-
"created_at": "2011-11-15T23:52:57Z",
|
4145
|
-
"description": "Single page for CBU Seattle off.",
|
4146
|
-
"fork": false,
|
4147
|
-
"forks": 1,
|
4148
|
-
"git_url": "git://github.com/codeforamerica/cbu-seattle-legacy.git",
|
4149
|
-
"homepage": "http://seattle.changeby.us",
|
4150
|
-
"html_url": "https://github.com/codeforamerica/cbu-seattle-legacy",
|
4151
|
-
"id": 2784312,
|
4152
|
-
"language": null,
|
4153
|
-
"master_branch": null,
|
4154
|
-
"name": "cbu-seattle-legacy",
|
4155
|
-
"open_issues": 0,
|
4156
|
-
"owner": {
|
4157
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
4158
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
4159
|
-
"id": 337792,
|
4160
|
-
"login": "codeforamerica",
|
4161
|
-
"url": "https://api.github.com/users/codeforamerica"
|
4162
|
-
},
|
4163
|
-
"private": false,
|
4164
|
-
"pushed_at": "2011-11-16T00:28:16Z",
|
4165
|
-
"size": 140,
|
4166
|
-
"ssh_url": "git@github.com:codeforamerica/cbu-seattle-legacy.git",
|
4167
|
-
"svn_url": "https://github.com/codeforamerica/cbu-seattle-legacy",
|
4168
|
-
"updated_at": "2011-11-16T00:28:16Z",
|
4169
|
-
"url": "https://api.github.com/repos/codeforamerica/cbu-seattle-legacy",
|
4170
|
-
"watchers": 1
|
4171
|
-
},
|
4172
|
-
{
|
4173
|
-
"clone_url": "https://github.com/codeforamerica/Intersection.git",
|
4174
|
-
"created_at": "2011-11-18T23:18:16Z",
|
4175
|
-
"description": "Code for America Project Dashbaord",
|
4176
|
-
"fork": false,
|
4177
|
-
"forks": 1,
|
4178
|
-
"git_url": "git://github.com/codeforamerica/Intersection.git",
|
4179
|
-
"homepage": "",
|
4180
|
-
"html_url": "https://github.com/codeforamerica/Intersection",
|
4181
|
-
"id": 2806308,
|
4182
|
-
"language": "Ruby",
|
4183
|
-
"master_branch": null,
|
4184
|
-
"name": "Intersection",
|
4185
|
-
"open_issues": 0,
|
4186
|
-
"owner": {
|
4187
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
4188
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
4189
|
-
"id": 337792,
|
4190
|
-
"login": "codeforamerica",
|
4191
|
-
"url": "https://api.github.com/users/codeforamerica"
|
4192
|
-
},
|
4193
|
-
"private": false,
|
4194
|
-
"pushed_at": "2012-01-02T22:02:32Z",
|
4195
|
-
"size": 1052,
|
4196
|
-
"ssh_url": "git@github.com:codeforamerica/Intersection.git",
|
4197
|
-
"svn_url": "https://github.com/codeforamerica/Intersection",
|
4198
|
-
"updated_at": "2012-01-02T22:02:33Z",
|
4199
|
-
"url": "https://api.github.com/repos/codeforamerica/Intersection",
|
4200
|
-
"watchers": 2
|
4201
|
-
},
|
4202
|
-
{
|
4203
|
-
"clone_url": "https://github.com/codeforamerica/cfa_template.git",
|
4204
|
-
"created_at": "2011-12-05T22:27:26Z",
|
4205
|
-
"description": "A list of templates for Github projects",
|
4206
|
-
"fork": false,
|
4207
|
-
"forks": 1,
|
4208
|
-
"git_url": "git://github.com/codeforamerica/cfa_template.git",
|
4209
|
-
"homepage": "",
|
4210
|
-
"html_url": "https://github.com/codeforamerica/cfa_template",
|
4211
|
-
"id": 2920444,
|
4212
|
-
"language": null,
|
4213
|
-
"master_branch": null,
|
4214
|
-
"name": "cfa_template",
|
4215
|
-
"open_issues": 0,
|
4216
|
-
"owner": {
|
4217
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
4218
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
4219
|
-
"id": 337792,
|
4220
|
-
"login": "codeforamerica",
|
4221
|
-
"url": "https://api.github.com/users/codeforamerica"
|
4222
|
-
},
|
4223
|
-
"private": false,
|
4224
|
-
"pushed_at": "2011-12-17T01:33:04Z",
|
4225
|
-
"size": 112,
|
4226
|
-
"ssh_url": "git@github.com:codeforamerica/cfa_template.git",
|
4227
|
-
"svn_url": "https://github.com/codeforamerica/cfa_template",
|
4228
|
-
"updated_at": "2011-12-17T01:33:04Z",
|
4229
|
-
"url": "https://api.github.com/repos/codeforamerica/cfa_template",
|
4230
|
-
"watchers": 1
|
4231
|
-
},
|
4232
|
-
{
|
4233
|
-
"clone_url": "https://github.com/codeforamerica/Change-By-Us.git",
|
4234
|
-
"created_at": "2011-12-06T21:18:03Z",
|
4235
|
-
"description": "A new way to share ideas, do projects, and make our cities better",
|
4236
|
-
"fork": true,
|
4237
|
-
"forks": 0,
|
4238
|
-
"git_url": "git://github.com/codeforamerica/Change-By-Us.git",
|
4239
|
-
"homepage": "changeby.us",
|
4240
|
-
"html_url": "https://github.com/codeforamerica/Change-By-Us",
|
4241
|
-
"id": 2928095,
|
4242
|
-
"language": "Python",
|
4243
|
-
"master_branch": null,
|
4244
|
-
"name": "Change-By-Us",
|
4245
|
-
"open_issues": 0,
|
4246
|
-
"owner": {
|
4247
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
4248
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
4249
|
-
"id": 337792,
|
4250
|
-
"login": "codeforamerica",
|
4251
|
-
"url": "https://api.github.com/users/codeforamerica"
|
4252
|
-
},
|
4253
|
-
"private": false,
|
4254
|
-
"pushed_at": "2011-12-21T00:33:08Z",
|
4255
|
-
"size": 192,
|
4256
|
-
"ssh_url": "git@github.com:codeforamerica/Change-By-Us.git",
|
4257
|
-
"svn_url": "https://github.com/codeforamerica/Change-By-Us",
|
4258
|
-
"updated_at": "2011-12-21T00:33:15Z",
|
4259
|
-
"url": "https://api.github.com/repos/codeforamerica/Change-By-Us",
|
4260
|
-
"watchers": 1
|
4261
|
-
},
|
4262
|
-
{
|
4263
|
-
"clone_url": "https://github.com/codeforamerica/test_repo.git",
|
4264
|
-
"created_at": "2011-12-13T23:27:38Z",
|
4265
|
-
"description": null,
|
4266
|
-
"fork": false,
|
4267
|
-
"forks": 1,
|
4268
|
-
"git_url": "git://github.com/codeforamerica/test_repo.git",
|
4269
|
-
"homepage": null,
|
4270
|
-
"html_url": "https://github.com/codeforamerica/test_repo",
|
4271
|
-
"id": 2976267,
|
4272
|
-
"language": null,
|
4273
|
-
"master_branch": null,
|
4274
|
-
"name": "test_repo",
|
4275
|
-
"open_issues": 0,
|
4276
|
-
"owner": {
|
4277
|
-
"avatar_url": "https://secure.gravatar.com/avatar/ec81184c572bc827b72ebb489d49f821?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png",
|
4278
|
-
"gravatar_id": "ec81184c572bc827b72ebb489d49f821",
|
4279
|
-
"id": 337792,
|
4280
|
-
"login": "codeforamerica",
|
4281
|
-
"url": "https://api.github.com/users/codeforamerica"
|
4282
|
-
},
|
4283
|
-
"private": false,
|
4284
|
-
"pushed_at": "2011-12-13T23:43:54Z",
|
4285
|
-
"size": 92,
|
4286
|
-
"ssh_url": "git@github.com:codeforamerica/test_repo.git",
|
4287
|
-
"svn_url": "https://github.com/codeforamerica/test_repo",
|
4288
|
-
"updated_at": "2011-12-13T23:43:54Z",
|
4289
|
-
"url": "https://api.github.com/repos/codeforamerica/test_repo",
|
4290
|
-
"watchers": 1
|
4291
|
-
}
|
4292
|
-
]
|