Chapter 23: Hierarchical Data

Author

Andrew Pua

Learning objectives

  1. Introduce a new data structure called lists
  2. Learn how to unpack lists systematically using only two new functions: unnest_longer() and unnest_wider()
  3. Get acquainted with JSON

Motivating example: Github repos

  • Consider gh_repos.
library(tidyverse)
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr     1.1.3     ✔ readr     2.1.4
✔ forcats   1.0.0     ✔ stringr   1.5.1
✔ ggplot2   3.4.3     ✔ tibble    3.2.1
✔ lubridate 1.9.2     ✔ tidyr     1.3.0
✔ purrr     1.0.2     
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag()    masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(repurrrsive)
is.list(gh_repos)
[1] TRUE
repos <- tibble(json = gh_repos)
repos
# A tibble: 6 × 1
  json       
  <list>     
1 <list [30]>
2 <list [30]>
3 <list [30]>
4 <list [26]>
5 <list [30]>
6 <list [30]>
str(repos)
tibble [6 × 1] (S3: tbl_df/tbl/data.frame)
 $ json:List of 6
  ..$ :List of 30
  .. ..$ :List of 68
  .. .. ..$ id               : int 61160198
  .. .. ..$ name             : chr "after"
  .. .. ..$ full_name        : chr "gaborcsardi/after"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/after"
  .. .. ..$ description      : chr "Run Code in the Background"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/after"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/after/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/after/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/after/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/after/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/after/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/after/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/after/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/after/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/after/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/after/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/after/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/after/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/after/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/after/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/after/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/after/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/after/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/after/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/after/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/after/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/after/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/after/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/after/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/after/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/after/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/after/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/after/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/after/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/after/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/after/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/after/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/after/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/after/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/after/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/after/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/after/deployments"
  .. .. ..$ created_at       : chr "2016-06-14T22:33:49Z"
  .. .. ..$ updated_at       : chr "2016-07-21T17:42:35Z"
  .. .. ..$ pushed_at        : chr "2016-07-09T16:13:42Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/after.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/after.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/after.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/after"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 15
  .. .. ..$ stargazers_count : int 5
  .. .. ..$ watchers_count   : int 5
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 5
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 40500181
  .. .. ..$ name             : chr "argufy"
  .. .. ..$ full_name        : chr "gaborcsardi/argufy"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/argufy"
  .. .. ..$ description      : chr "Declarative function argument checks"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/argufy"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/argufy/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/argufy/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/argufy/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/argufy/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/argufy/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/argufy/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/argufy/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/argufy/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/argufy/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/argufy/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/argufy/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/argufy/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/argufy/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/argufy/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/argufy/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/argufy/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/argufy/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/argufy/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/argufy/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/argufy/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/argufy/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/argufy/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/argufy/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/argufy/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/argufy/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/argufy/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/argufy/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/argufy/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/argufy/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/argufy/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/argufy/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/argufy/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/argufy/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/argufy/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/argufy/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/argufy/deployments"
  .. .. ..$ created_at       : chr "2015-08-10T18:56:23Z"
  .. .. ..$ updated_at       : chr "2016-06-30T18:28:08Z"
  .. .. ..$ pushed_at        : chr "2016-03-12T14:59:25Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/argufy.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/argufy.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/argufy.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/argufy"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 115
  .. .. ..$ stargazers_count : int 19
  .. .. ..$ watchers_count   : int 19
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 6
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 6
  .. .. ..$ watchers         : int 19
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 36442442
  .. .. ..$ name             : chr "ask"
  .. .. ..$ full_name        : chr "gaborcsardi/ask"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/ask"
  .. .. ..$ description      : chr "Friendly CLI interaction in R"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/ask"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/ask/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/ask/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/ask/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/ask/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/ask/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/ask/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/ask/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/ask/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/ask/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/ask/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/ask/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/ask/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/ask/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/ask/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/ask/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/ask/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/ask/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/ask/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/ask/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/ask/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/ask/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/ask/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/ask/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/ask/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/ask/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/ask/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/ask/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/ask/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/ask/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/ask/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/ask/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/ask/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/ask/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/ask/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/ask/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/ask/deployments"
  .. .. ..$ created_at       : chr "2015-05-28T14:04:57Z"
  .. .. ..$ updated_at       : chr "2016-06-19T17:06:15Z"
  .. .. ..$ pushed_at        : chr "2016-07-05T07:55:46Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/ask.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/ask.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/ask.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/ask"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 199
  .. .. ..$ stargazers_count : int 5
  .. .. ..$ watchers_count   : int 5
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 4
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 4
  .. .. ..$ watchers         : int 5
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 34924886
  .. .. ..$ name             : chr "baseimports"
  .. .. ..$ full_name        : chr "gaborcsardi/baseimports"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/baseimports"
  .. .. ..$ description      : chr "Do we get warnings for undeclared imports from base R packages?"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/baseimports"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/baseimports/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/baseimports/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/baseimports/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/baseimports/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/baseimports/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/baseimports/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/baseimports/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/baseimports/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/baseimports/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/baseimports/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/baseimports/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/baseimports/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/baseimports/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/baseimports/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/baseimports/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/baseimports/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/baseimports/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/baseimports/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/baseimports/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/baseimports/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/baseimports/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/baseimports/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/baseimports/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/baseimports/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/baseimports/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/baseimports/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/baseimports/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/baseimports/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/baseimports/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/baseimports/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/baseimports/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/baseimports/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/baseimports/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/baseimports/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/baseimports/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/baseimports/deployments"
  .. .. ..$ created_at       : chr "2015-05-01T21:29:10Z"
  .. .. ..$ updated_at       : chr "2015-05-01T23:03:42Z"
  .. .. ..$ pushed_at        : chr "2015-05-01T23:03:41Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/baseimports.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/baseimports.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/baseimports.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/baseimports"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 112
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 61620661
  .. .. ..$ name             : chr "citest"
  .. .. ..$ full_name        : chr "gaborcsardi/citest"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/citest"
  .. .. ..$ description      : chr "Test R package and repo for the r-hub CI"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/citest"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/citest/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/citest/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/citest/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/citest/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/citest/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/citest/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/citest/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/citest/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/citest/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/citest/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/citest/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/citest/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/citest/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/citest/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/citest/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/citest/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/citest/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/citest/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/citest/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/citest/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/citest/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/citest/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/citest/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/citest/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/citest/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/citest/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/citest/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/citest/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/citest/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/citest/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/citest/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/citest/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/citest/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/citest/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/citest/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/citest/deployments"
  .. .. ..$ created_at       : chr "2016-06-21T09:29:01Z"
  .. .. ..$ updated_at       : chr "2016-06-21T09:29:02Z"
  .. .. ..$ pushed_at        : chr "2016-06-21T09:29:44Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/citest.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/citest.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/citest.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/citest"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 2
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 33907457
  .. .. ..$ name             : chr "clisymbols"
  .. .. ..$ full_name        : chr "gaborcsardi/clisymbols"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/clisymbols"
  .. .. ..$ description      : chr "Unicode symbols for CLI applications, with fallbacks"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/clisymbols"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/clisymbols/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/clisymbols/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/clisymbols/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/clisymbols/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/clisymbols/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/clisymbols/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/clisymbols/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/clisymbols/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/clisymbols/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/clisymbols/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/clisymbols/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/clisymbols/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/clisymbols/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/clisymbols/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/clisymbols/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/clisymbols/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/clisymbols/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/clisymbols/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/clisymbols/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/clisymbols/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/clisymbols/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/clisymbols/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/clisymbols/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/clisymbols/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/clisymbols/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/clisymbols/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/clisymbols/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/clisymbols/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/clisymbols/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/clisymbols/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/clisymbols/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/clisymbols/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/clisymbols/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/clisymbols/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/clisymbols/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/clisymbols/deployments"
  .. .. ..$ created_at       : chr "2015-04-14T02:57:39Z"
  .. .. ..$ updated_at       : chr "2016-07-01T14:00:13Z"
  .. .. ..$ pushed_at        : chr "2015-06-07T19:02:10Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/clisymbols.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/clisymbols.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/clisymbols.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/clisymbols"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 180
  .. .. ..$ stargazers_count : int 18
  .. .. ..$ watchers_count   : int 18
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 18
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 37236467
  .. .. ..$ name             : chr "cmaker"
  .. .. ..$ full_name        : chr "gaborcsardi/cmaker"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/cmaker"
  .. .. ..$ description      : chr "port of cmake to r"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/cmaker"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/cmaker/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/cmaker/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/cmaker/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/cmaker/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/cmaker/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/cmaker/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/cmaker/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/cmaker/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/cmaker/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/cmaker/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/cmaker/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/cmaker/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/cmaker/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/cmaker/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/cmaker/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/cmaker/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/cmaker/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/cmaker/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/cmaker/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/cmaker/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/cmaker/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/cmaker/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/cmaker/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/cmaker/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/cmaker/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/cmaker/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/cmaker/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/cmaker/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/cmaker/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/cmaker/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/cmaker/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/cmaker/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/cmaker/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/cmaker/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/cmaker/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/cmaker/deployments"
  .. .. ..$ created_at       : chr "2015-06-11T03:10:38Z"
  .. .. ..$ updated_at       : chr "2015-06-11T03:10:46Z"
  .. .. ..$ pushed_at        : chr "2015-06-16T18:08:03Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/cmaker.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/cmaker.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/cmaker.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/cmaker"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 6244
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "C"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 67959624
  .. .. ..$ name             : chr "cmark"
  .. .. ..$ full_name        : chr "gaborcsardi/cmark"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/cmark"
  .. .. ..$ description      : chr "CommonMark parsing and rendering library and program in C"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/cmark"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/cmark/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/cmark/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/cmark/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/cmark/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/cmark/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/cmark/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/cmark/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/cmark/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/cmark/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/cmark/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/cmark/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/cmark/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/cmark/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/cmark/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/cmark/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/cmark/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/cmark/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/cmark/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/cmark/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/cmark/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/cmark/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/cmark/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/cmark/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/cmark/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/cmark/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/cmark/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/cmark/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/cmark/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/cmark/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/cmark/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/cmark/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/cmark/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/cmark/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/cmark/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/cmark/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/cmark/deployments"
  .. .. ..$ created_at       : chr "2016-09-11T23:19:49Z"
  .. .. ..$ updated_at       : chr "2016-09-11T23:19:50Z"
  .. .. ..$ pushed_at        : chr "2016-09-11T23:20:23Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/cmark.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/cmark.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/cmark.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/cmark"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 3704
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "C"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 63152619
  .. .. ..$ name             : chr "conditions"
  .. .. ..$ full_name        : chr "gaborcsardi/conditions"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/conditions"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/conditions"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/conditions/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/conditions/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/conditions/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/conditions/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/conditions/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/conditions/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/conditions/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/conditions/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/conditions/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/conditions/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/conditions/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/conditions/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/conditions/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/conditions/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/conditions/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/conditions/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/conditions/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/conditions/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/conditions/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/conditions/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/conditions/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/conditions/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/conditions/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/conditions/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/conditions/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/conditions/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/conditions/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/conditions/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/conditions/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/conditions/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/conditions/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/conditions/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/conditions/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/conditions/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/conditions/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/conditions/deployments"
  .. .. ..$ created_at       : chr "2016-07-12T11:31:31Z"
  .. .. ..$ updated_at       : chr "2016-07-12T11:31:32Z"
  .. .. ..$ pushed_at        : chr "2016-08-08T13:29:31Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/conditions.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/conditions.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/conditions.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/conditions"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 24
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 24343686
  .. .. ..$ name             : chr "crayon"
  .. .. ..$ full_name        : chr "gaborcsardi/crayon"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/crayon"
  .. .. ..$ description      : chr "R package for colored terminal output"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/crayon"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/crayon/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/crayon/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/crayon/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/crayon/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/crayon/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/crayon/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/crayon/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/crayon/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/crayon/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/crayon/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/crayon/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/crayon/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/crayon/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/crayon/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/crayon/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/crayon/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/crayon/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/crayon/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/crayon/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/crayon/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/crayon/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/crayon/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/crayon/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/crayon/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/crayon/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/crayon/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/crayon/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/crayon/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/crayon/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/crayon/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/crayon/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/crayon/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/crayon/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/crayon/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/crayon/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/crayon/deployments"
  .. .. ..$ created_at       : chr "2014-09-22T20:07:22Z"
  .. .. ..$ updated_at       : chr "2016-10-19T13:23:29Z"
  .. .. ..$ pushed_at        : chr "2016-08-24T00:26:36Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/crayon.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/crayon.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/crayon.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/crayon"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 752
  .. .. ..$ stargazers_count : int 52
  .. .. ..$ watchers_count   : int 52
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 9
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 7
  .. .. ..$ forks            : int 9
  .. .. ..$ open_issues      : int 7
  .. .. ..$ watchers         : int 52
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 69169722
  .. .. ..$ name             : chr "debugme"
  .. .. ..$ full_name        : chr "gaborcsardi/debugme"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/debugme"
  .. .. ..$ description      : chr "Easy and efficient debugging for R packages"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/debugme"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/debugme/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/debugme/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/debugme/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/debugme/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/debugme/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/debugme/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/debugme/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/debugme/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/debugme/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/debugme/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/debugme/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/debugme/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/debugme/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/debugme/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/debugme/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/debugme/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/debugme/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/debugme/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/debugme/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/debugme/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/debugme/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/debugme/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/debugme/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/debugme/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/debugme/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/debugme/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/debugme/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/debugme/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/debugme/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/debugme/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/debugme/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/debugme/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/debugme/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/debugme/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/debugme/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/debugme/deployments"
  .. .. ..$ created_at       : chr "2016-09-25T14:36:52Z"
  .. .. ..$ updated_at       : chr "2016-10-05T07:39:26Z"
  .. .. ..$ pushed_at        : chr "2016-09-28T14:24:32Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/debugme.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/debugme.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/debugme.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/debugme"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 998
  .. .. ..$ stargazers_count : int 20
  .. .. ..$ watchers_count   : int 20
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 4
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 4
  .. .. ..$ watchers         : int 20
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 64197030
  .. .. ..$ name             : chr "diffobj"
  .. .. ..$ full_name        : chr "gaborcsardi/diffobj"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/diffobj"
  .. .. ..$ description      : chr "Compare R Objects with a Diff"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/diffobj"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/diffobj/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/diffobj/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/diffobj/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/diffobj/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/diffobj/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/diffobj/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/diffobj/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/diffobj/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/diffobj/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/diffobj/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/diffobj/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/diffobj/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/diffobj/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/diffobj/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/diffobj/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/diffobj/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/diffobj/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/diffobj/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/diffobj/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/diffobj/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/diffobj/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/diffobj/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/diffobj/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/diffobj/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/diffobj/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/diffobj/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/diffobj/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/diffobj/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/diffobj/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/diffobj/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/diffobj/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/diffobj/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/diffobj/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/diffobj/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/diffobj/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/diffobj/deployments"
  .. .. ..$ created_at       : chr "2016-07-26T06:46:59Z"
  .. .. ..$ updated_at       : chr "2016-07-26T06:47:00Z"
  .. .. ..$ pushed_at        : chr "2016-07-26T07:30:24Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/diffobj.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/diffobj.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/diffobj.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/diffobj"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 1428
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 25061555
  .. .. ..$ name             : chr "disposables"
  .. .. ..$ full_name        : chr "gaborcsardi/disposables"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/disposables"
  .. .. ..$ description      : chr "Create disposable R packages, for testing"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/disposables"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/disposables/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/disposables/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/disposables/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/disposables/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/disposables/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/disposables/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/disposables/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/disposables/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/disposables/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/disposables/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/disposables/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/disposables/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/disposables/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/disposables/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/disposables/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/disposables/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/disposables/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/disposables/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/disposables/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/disposables/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/disposables/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/disposables/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/disposables/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/disposables/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/disposables/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/disposables/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/disposables/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/disposables/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/disposables/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/disposables/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/disposables/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/disposables/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/disposables/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/disposables/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/disposables/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/disposables/deployments"
  .. .. ..$ created_at       : chr "2014-10-11T03:17:23Z"
  .. .. ..$ updated_at       : chr "2015-11-30T16:23:16Z"
  .. .. ..$ pushed_at        : chr "2015-07-18T13:59:12Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/disposables.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/disposables.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/disposables.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/disposables"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 216
  .. .. ..$ stargazers_count : int 8
  .. .. ..$ watchers_count   : int 8
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 2
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 2
  .. .. ..$ watchers         : int 8
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 23227981
  .. .. ..$ name             : chr "dotenv"
  .. .. ..$ full_name        : chr "gaborcsardi/dotenv"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/dotenv"
  .. .. ..$ description      : chr "Load environment variables from .env in R"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/dotenv"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/dotenv/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/dotenv/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/dotenv/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/dotenv/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/dotenv/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/dotenv/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/dotenv/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/dotenv/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/dotenv/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/dotenv/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/dotenv/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/dotenv/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/dotenv/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/dotenv/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/dotenv/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/dotenv/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/dotenv/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/dotenv/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/dotenv/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/dotenv/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/dotenv/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/dotenv/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/dotenv/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/dotenv/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/dotenv/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/dotenv/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/dotenv/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/dotenv/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/dotenv/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/dotenv/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/dotenv/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/dotenv/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/dotenv/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/dotenv/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/dotenv/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/dotenv/deployments"
  .. .. ..$ created_at       : chr "2014-08-22T14:25:26Z"
  .. .. ..$ updated_at       : chr "2016-09-20T16:47:08Z"
  .. .. ..$ pushed_at        : chr "2016-04-07T13:48:57Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/dotenv.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/dotenv.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/dotenv.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/dotenv"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 13
  .. .. ..$ stargazers_count : int 6
  .. .. ..$ watchers_count   : int 6
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 2
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 2
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 6
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 23483249
  .. .. ..$ name             : chr "elasticsearch-jetty"
  .. .. ..$ full_name        : chr "gaborcsardi/elasticsearch-jetty"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/elasticsearch-jetty"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/elasticsearch-jetty/deployments"
  .. .. ..$ created_at       : chr "2014-08-30T02:41:20Z"
  .. .. ..$ updated_at       : chr "2014-08-30T03:18:14Z"
  .. .. ..$ pushed_at        : chr "2014-08-30T03:20:14Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/elasticsearch-jetty.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/elasticsearch-jetty.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/elasticsearch-jetty.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/elasticsearch-jetty"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 463
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "Java"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 22438731
  .. .. ..$ name             : chr "falsy"
  .. .. ..$ full_name        : chr "gaborcsardi/falsy"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/falsy"
  .. .. ..$ description      : chr "R package for falsy and truthy values"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/falsy"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/falsy/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/falsy/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/falsy/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/falsy/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/falsy/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/falsy/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/falsy/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/falsy/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/falsy/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/falsy/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/falsy/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/falsy/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/falsy/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/falsy/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/falsy/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/falsy/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/falsy/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/falsy/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/falsy/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/falsy/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/falsy/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/falsy/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/falsy/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/falsy/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/falsy/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/falsy/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/falsy/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/falsy/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/falsy/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/falsy/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/falsy/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/falsy/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/falsy/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/falsy/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/falsy/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/falsy/deployments"
  .. .. ..$ created_at       : chr "2014-07-30T17:54:27Z"
  .. .. ..$ updated_at       : chr "2016-09-22T15:25:56Z"
  .. .. ..$ pushed_at        : chr "2016-05-13T23:37:01Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/falsy.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/falsy.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/falsy.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/falsy"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 30
  .. .. ..$ stargazers_count : int 11
  .. .. ..$ watchers_count   : int 11
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 11
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 61160771
  .. .. ..$ name             : chr "fswatch"
  .. .. ..$ full_name        : chr "gaborcsardi/fswatch"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/fswatch"
  .. .. ..$ description      : chr "Watch a File or Directory for Changes"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/fswatch"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/fswatch/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/fswatch/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/fswatch/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/fswatch/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/fswatch/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/fswatch/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/fswatch/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/fswatch/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/fswatch/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/fswatch/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/fswatch/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/fswatch/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/fswatch/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/fswatch/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/fswatch/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/fswatch/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/fswatch/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/fswatch/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/fswatch/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/fswatch/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/fswatch/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/fswatch/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/fswatch/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/fswatch/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/fswatch/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/fswatch/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/fswatch/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/fswatch/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/fswatch/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/fswatch/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/fswatch/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/fswatch/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/fswatch/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/fswatch/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/fswatch/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/fswatch/deployments"
  .. .. ..$ created_at       : chr "2016-06-14T22:44:46Z"
  .. .. ..$ updated_at       : chr "2016-08-09T04:02:30Z"
  .. .. ..$ pushed_at        : chr "2016-06-14T23:06:07Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/fswatch.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/fswatch.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/fswatch.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/fswatch"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 8
  .. .. ..$ stargazers_count : int 3
  .. .. ..$ watchers_count   : int 3
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 3
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 37042992
  .. .. ..$ name             : chr "gh"
  .. .. ..$ full_name        : chr "gaborcsardi/gh"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/gh"
  .. .. ..$ description      : chr "Minimalistic GitHub API client in R"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/gh"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/gh/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/gh/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/gh/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/gh/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/gh/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/gh/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/gh/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/gh/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/gh/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/gh/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/gh/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/gh/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/gh/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/gh/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/gh/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/gh/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/gh/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/gh/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/gh/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/gh/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/gh/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/gh/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/gh/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/gh/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/gh/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/gh/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/gh/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/gh/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/gh/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/gh/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/gh/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/gh/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/gh/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/gh/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/gh/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/gh/deployments"
  .. .. ..$ created_at       : chr "2015-06-08T03:00:11Z"
  .. .. ..$ updated_at       : chr "2016-07-29T04:40:12Z"
  .. .. ..$ pushed_at        : chr "2016-09-20T07:24:14Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/gh.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/gh.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/gh.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/gh"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 58
  .. .. ..$ stargazers_count : int 34
  .. .. ..$ watchers_count   : int 34
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 6
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 8
  .. .. ..$ forks            : int 6
  .. .. ..$ open_issues      : int 8
  .. .. ..$ watchers         : int 34
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 68708330
  .. .. ..$ name             : chr "gitty"
  .. .. ..$ full_name        : chr "gaborcsardi/gitty"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/gitty"
  .. .. ..$ description      : chr "Git commands from the R console"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/gitty"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/gitty/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/gitty/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/gitty/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/gitty/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/gitty/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/gitty/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/gitty/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/gitty/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/gitty/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/gitty/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/gitty/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/gitty/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/gitty/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/gitty/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/gitty/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/gitty/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/gitty/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/gitty/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/gitty/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/gitty/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/gitty/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/gitty/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/gitty/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/gitty/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/gitty/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/gitty/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/gitty/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/gitty/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/gitty/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/gitty/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/gitty/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/gitty/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/gitty/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/gitty/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/gitty/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/gitty/deployments"
  .. .. ..$ created_at       : chr "2016-09-20T12:11:46Z"
  .. .. ..$ updated_at       : chr "2016-09-20T14:33:26Z"
  .. .. ..$ pushed_at        : chr "2016-09-20T12:11:58Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/gitty.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/gitty.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/gitty.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/gitty"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 26
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "Shell"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 10396379
  .. .. ..$ name             : chr "ISA"
  .. .. ..$ full_name        : chr "gaborcsardi/ISA"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/ISA"
  .. .. ..$ description      : chr "Iterative Signature Algorithm and related tools"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/ISA"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/ISA/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/ISA/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/ISA/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/ISA/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/ISA/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/ISA/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/ISA/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/ISA/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/ISA/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/ISA/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/ISA/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/ISA/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/ISA/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/ISA/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/ISA/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/ISA/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/ISA/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/ISA/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/ISA/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/ISA/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/ISA/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/ISA/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/ISA/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/ISA/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/ISA/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/ISA/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/ISA/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/ISA/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/ISA/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/ISA/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/ISA/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/ISA/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/ISA/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/ISA/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/ISA/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/ISA/deployments"
  .. .. ..$ created_at       : chr "2013-05-31T02:29:52Z"
  .. .. ..$ updated_at       : chr "2016-07-29T15:48:28Z"
  .. .. ..$ pushed_at        : chr "2015-10-01T15:50:45Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/ISA.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/ISA.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/ISA.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/ISA"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 39461
  .. .. ..$ stargazers_count : int 2
  .. .. ..$ watchers_count   : int 2
  .. .. ..$ language         : chr "ActionScript"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 2
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 2
  .. .. ..$ forks            : int 2
  .. .. ..$ open_issues      : int 2
  .. .. ..$ watchers         : int 2
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 36510350
  .. .. ..$ name             : chr "keypress"
  .. .. ..$ full_name        : chr "gaborcsardi/keypress"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/keypress"
  .. .. ..$ description      : chr "Read individual keys in R without waiting for an ENTER"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/keypress"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/keypress/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/keypress/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/keypress/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/keypress/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/keypress/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/keypress/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/keypress/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/keypress/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/keypress/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/keypress/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/keypress/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/keypress/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/keypress/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/keypress/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/keypress/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/keypress/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/keypress/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/keypress/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/keypress/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/keypress/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/keypress/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/keypress/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/keypress/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/keypress/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/keypress/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/keypress/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/keypress/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/keypress/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/keypress/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/keypress/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/keypress/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/keypress/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/keypress/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/keypress/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/keypress/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/keypress/deployments"
  .. .. ..$ created_at       : chr "2015-05-29T14:48:48Z"
  .. .. ..$ updated_at       : chr "2016-04-12T07:44:10Z"
  .. .. ..$ pushed_at        : chr "2016-01-19T21:51:42Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/keypress.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/keypress.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/keypress.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/keypress"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 34
  .. .. ..$ stargazers_count : int 10
  .. .. ..$ watchers_count   : int 10
  .. .. ..$ language         : chr "C"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 10
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 68243980
  .. .. ..$ name             : chr "lintr"
  .. .. ..$ full_name        : chr "gaborcsardi/lintr"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/lintr"
  .. .. ..$ description      : chr "Static Code Analysis for R"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/lintr"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/lintr/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/lintr/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/lintr/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/lintr/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/lintr/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/lintr/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/lintr/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/lintr/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/lintr/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/lintr/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/lintr/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/lintr/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/lintr/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/lintr/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/lintr/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/lintr/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/lintr/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/lintr/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/lintr/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/lintr/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/lintr/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/lintr/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/lintr/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/lintr/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/lintr/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/lintr/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/lintr/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/lintr/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/lintr/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/lintr/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/lintr/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/lintr/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/lintr/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/lintr/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/lintr/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/lintr/deployments"
  .. .. ..$ created_at       : chr "2016-09-14T21:14:53Z"
  .. .. ..$ updated_at       : chr "2016-09-14T21:14:54Z"
  .. .. ..$ pushed_at        : chr "2016-09-14T16:44:24Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/lintr.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/lintr.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/lintr.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/lintr"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 407
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 30056165
  .. .. ..$ name             : chr "macBriain"
  .. .. ..$ full_name        : chr "gaborcsardi/macBriain"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/macBriain"
  .. .. ..$ description      : chr "Say error messages aloud on a Mac, including advice :)"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/macBriain"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/macBriain/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/macBriain/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/macBriain/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/macBriain/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/macBriain/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/macBriain/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/macBriain/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/macBriain/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/macBriain/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/macBriain/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/macBriain/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/macBriain/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/macBriain/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/macBriain/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/macBriain/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/macBriain/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/macBriain/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/macBriain/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/macBriain/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/macBriain/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/macBriain/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/macBriain/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/macBriain/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/macBriain/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/macBriain/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/macBriain/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/macBriain/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/macBriain/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/macBriain/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/macBriain/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/macBriain/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/macBriain/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/macBriain/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/macBriain/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/macBriain/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/macBriain/deployments"
  .. .. ..$ created_at       : chr "2015-01-30T04:29:07Z"
  .. .. ..$ updated_at       : chr "2015-11-20T14:20:03Z"
  .. .. ..$ pushed_at        : chr "2015-01-30T04:32:55Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/macBriain.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/macBriain.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/macBriain.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/macBriain"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 120
  .. .. ..$ stargazers_count : int 6
  .. .. ..$ watchers_count   : int 6
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 6
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 40200563
  .. .. ..$ name             : chr "maxygen"
  .. .. ..$ full_name        : chr "gaborcsardi/maxygen"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/maxygen"
  .. .. ..$ description      : chr ":exclamation: OUTDATED Markdown + Roxygen = Maxygen"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/maxygen"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/maxygen/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/maxygen/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/maxygen/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/maxygen/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/maxygen/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/maxygen/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/maxygen/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/maxygen/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/maxygen/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/maxygen/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/maxygen/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/maxygen/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/maxygen/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/maxygen/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/maxygen/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/maxygen/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/maxygen/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/maxygen/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/maxygen/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/maxygen/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/maxygen/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/maxygen/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/maxygen/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/maxygen/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/maxygen/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/maxygen/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/maxygen/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/maxygen/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/maxygen/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/maxygen/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/maxygen/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/maxygen/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/maxygen/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/maxygen/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/maxygen/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/maxygen/deployments"
  .. .. ..$ created_at       : chr "2015-08-04T18:04:10Z"
  .. .. ..$ updated_at       : chr "2016-10-04T23:01:00Z"
  .. .. ..$ pushed_at        : chr "2015-10-21T12:51:44Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/maxygen.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/maxygen.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/maxygen.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/maxygen"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 140
  .. .. ..$ stargazers_count : int 59
  .. .. ..$ watchers_count   : int 59
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 2
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 2
  .. .. ..$ forks            : int 2
  .. .. ..$ open_issues      : int 2
  .. .. ..$ watchers         : int 59
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 29020316
  .. .. ..$ name             : chr "MISO"
  .. .. ..$ full_name        : chr "gaborcsardi/MISO"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/MISO"
  .. .. ..$ description      : chr "MISO: Mixture of Isoforms model for RNA-Seq isoform quantitation"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/MISO"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/MISO/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/MISO/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/MISO/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/MISO/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/MISO/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/MISO/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/MISO/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/MISO/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/MISO/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/MISO/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/MISO/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/MISO/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/MISO/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/MISO/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/MISO/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/MISO/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/MISO/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/MISO/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/MISO/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/MISO/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/MISO/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/MISO/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/MISO/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/MISO/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/MISO/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/MISO/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/MISO/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/MISO/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/MISO/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/MISO/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/MISO/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/MISO/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/MISO/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/MISO/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/MISO/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/MISO/deployments"
  .. .. ..$ created_at       : chr "2015-01-09T14:46:01Z"
  .. .. ..$ updated_at       : chr "2015-05-06T18:10:17Z"
  .. .. ..$ pushed_at        : chr "2015-06-03T13:54:04Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/MISO.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/MISO.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/MISO.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/MISO"
  .. .. ..$ homepage         : chr "http://genes.mit.edu/burgelab/miso/index.html"
  .. .. ..$ size             : int 26328
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "C"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 6
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 6
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "fastmiso"
  .. ..$ :List of 68
  .. .. ..$ id               : int 52725247
  .. .. ..$ name             : chr "parr"
  .. .. ..$ full_name        : chr "gaborcsardi/parr"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/parr"
  .. .. ..$ description      : chr "Easy parallel programming in R -- Work in progress!"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/parr"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/parr/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/parr/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/parr/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/parr/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/parr/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/parr/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/parr/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/parr/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/parr/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/parr/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/parr/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/parr/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/parr/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/parr/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/parr/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/parr/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/parr/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/parr/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/parr/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/parr/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/parr/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/parr/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/parr/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/parr/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/parr/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/parr/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/parr/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/parr/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/parr/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/parr/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/parr/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/parr/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/parr/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/parr/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/parr/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/parr/deployments"
  .. .. ..$ created_at       : chr "2016-02-28T14:31:40Z"
  .. .. ..$ updated_at       : chr "2016-05-03T03:12:06Z"
  .. .. ..$ pushed_at        : chr "2016-03-11T23:49:52Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/parr.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/parr.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/parr.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/parr"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 734
  .. .. ..$ stargazers_count : int 6
  .. .. ..$ watchers_count   : int 6
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi FALSE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 14
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 14
  .. .. ..$ watchers         : int 6
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 23134624
  .. .. ..$ name             : chr "parsedate"
  .. .. ..$ full_name        : chr "gaborcsardi/parsedate"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/parsedate"
  .. .. ..$ description      : chr "R package to parse dates given in arbitrary formats"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/parsedate"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/parsedate/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/parsedate/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/parsedate/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/parsedate/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/parsedate/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/parsedate/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/parsedate/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/parsedate/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/parsedate/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/parsedate/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/parsedate/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/parsedate/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/parsedate/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/parsedate/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/parsedate/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/parsedate/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/parsedate/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/parsedate/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/parsedate/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/parsedate/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/parsedate/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/parsedate/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/parsedate/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/parsedate/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/parsedate/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/parsedate/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/parsedate/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/parsedate/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/parsedate/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/parsedate/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/parsedate/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/parsedate/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/parsedate/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/parsedate/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/parsedate/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/parsedate/deployments"
  .. .. ..$ created_at       : chr "2014-08-20T03:31:04Z"
  .. .. ..$ updated_at       : chr "2016-06-06T20:22:00Z"
  .. .. ..$ pushed_at        : chr "2016-05-09T20:23:19Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/parsedate.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/parsedate.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/parsedate.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/parsedate"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 58
  .. .. ..$ stargazers_count : int 13
  .. .. ..$ watchers_count   : int 13
  .. .. ..$ language         : chr "C"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 3
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 3
  .. .. ..$ watchers         : int 13
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 24293304
  .. .. ..$ name             : chr "pingr"
  .. .. ..$ full_name        : chr "gaborcsardi/pingr"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/pingr"
  .. .. ..$ description      : chr "R package to ping, over TCP as well"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/pingr"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/pingr/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/pingr/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/pingr/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/pingr/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/pingr/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/pingr/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/pingr/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/pingr/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/pingr/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/pingr/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/pingr/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/pingr/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/pingr/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/pingr/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/pingr/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/pingr/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/pingr/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/pingr/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/pingr/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/pingr/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/pingr/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/pingr/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/pingr/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/pingr/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/pingr/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/pingr/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/pingr/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/pingr/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/pingr/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/pingr/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/pingr/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/pingr/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/pingr/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/pingr/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/pingr/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/pingr/deployments"
  .. .. ..$ created_at       : chr "2014-09-21T14:36:10Z"
  .. .. ..$ updated_at       : chr "2015-05-07T15:08:15Z"
  .. .. ..$ pushed_at        : chr "2015-05-07T15:08:15Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/pingr.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/pingr.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/pingr.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/pingr"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 312
  .. .. ..$ stargazers_count : int 2
  .. .. ..$ watchers_count   : int 2
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 2
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 2
  .. .. ..$ watchers         : int 2
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 23767512
  .. .. ..$ name             : chr "pkgconfig"
  .. .. ..$ full_name        : chr "gaborcsardi/pkgconfig"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/pkgconfig"
  .. .. ..$ description      : chr "Private configuration for R packages"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/pkgconfig"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/pkgconfig/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/pkgconfig/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/pkgconfig/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/pkgconfig/deployments"
  .. .. ..$ created_at       : chr "2014-09-07T18:37:00Z"
  .. .. ..$ updated_at       : chr "2016-10-19T13:10:43Z"
  .. .. ..$ pushed_at        : chr "2016-02-01T01:07:46Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/pkgconfig.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/pkgconfig.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/pkgconfig.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/pkgconfig"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 35
  .. .. ..$ stargazers_count : int 8
  .. .. ..$ watchers_count   : int 8
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 8
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 11191345
  .. .. ..$ name             : chr "playground"
  .. .. ..$ full_name        : chr "gaborcsardi/playground"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "gaborcsardi"
  .. .. .. ..$ id                 : int 660288
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/660288?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/gaborcsardi"
  .. .. .. ..$ html_url           : chr "https://github.com/gaborcsardi"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/gaborcsardi/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/gaborcsardi/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/gaborcsardi/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/gaborcsardi/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/gaborcsardi/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/gaborcsardi/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/gaborcsardi/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/gaborcsardi/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/gaborcsardi/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/gaborcsardi/playground"
  .. .. ..$ description      : chr "First line Second line."
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/gaborcsardi/playground"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/gaborcsardi/playground/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/gaborcsardi/playground/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/gaborcsardi/playground/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/gaborcsardi/playground/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/gaborcsardi/playground/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/gaborcsardi/playground/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/gaborcsardi/playground/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/gaborcsardi/playground/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/gaborcsardi/playground/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/gaborcsardi/playground/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/gaborcsardi/playground/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/gaborcsardi/playground/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/gaborcsardi/playground/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/gaborcsardi/playground/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/gaborcsardi/playground/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/gaborcsardi/playground/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/gaborcsardi/playground/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/gaborcsardi/playground/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/gaborcsardi/playground/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/gaborcsardi/playground/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/gaborcsardi/playground/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/gaborcsardi/playground/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/gaborcsardi/playground/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/gaborcsardi/playground/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/gaborcsardi/playground/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/gaborcsardi/playground/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/gaborcsardi/playground/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/gaborcsardi/playground/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/gaborcsardi/playground/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/gaborcsardi/playground/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/gaborcsardi/playground/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/gaborcsardi/playground/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/gaborcsardi/playground/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/gaborcsardi/playground/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/gaborcsardi/playground/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/gaborcsardi/playground/deployments"
  .. .. ..$ created_at       : chr "2013-07-05T04:01:34Z"
  .. .. ..$ updated_at       : chr "2015-08-19T19:36:26Z"
  .. .. ..$ pushed_at        : chr "2015-11-02T19:51:55Z"
  .. .. ..$ git_url          : chr "git://github.com/gaborcsardi/playground.git"
  .. .. ..$ ssh_url          : chr "git@github.com:gaborcsardi/playground.git"
  .. .. ..$ clone_url        : chr "https://github.com/gaborcsardi/playground.git"
  .. .. ..$ svn_url          : chr "https://github.com/gaborcsardi/playground"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 4584
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  ..$ :List of 30
  .. ..$ :List of 68
  .. .. ..$ id               : int 14756210
  .. .. ..$ name             : chr "2013-11_sfu"
  .. .. ..$ full_name        : chr "jennybc/2013-11_sfu"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/2013-11_sfu"
  .. .. ..$ description      : chr "Supporting documents for talk and workshop for SFU Statistics and Actuarial Science"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/2013-11_sfu"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/2013-11_sfu/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/2013-11_sfu/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/2013-11_sfu/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/2013-11_sfu/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/2013-11_sfu/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/2013-11_sfu/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/2013-11_sfu/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/2013-11_sfu/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/2013-11_sfu/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/2013-11_sfu/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/2013-11_sfu/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/2013-11_sfu/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/2013-11_sfu/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/2013-11_sfu/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/2013-11_sfu/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/2013-11_sfu/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/2013-11_sfu/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/2013-11_sfu/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/2013-11_sfu/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/2013-11_sfu/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/2013-11_sfu/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/2013-11_sfu/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/2013-11_sfu/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/2013-11_sfu/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/2013-11_sfu/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/2013-11_sfu/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/2013-11_sfu/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/2013-11_sfu/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/2013-11_sfu/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/2013-11_sfu/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/2013-11_sfu/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/2013-11_sfu/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/2013-11_sfu/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/2013-11_sfu/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/2013-11_sfu/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/2013-11_sfu/deployments"
  .. .. ..$ created_at       : chr "2013-11-27T19:02:42Z"
  .. .. ..$ updated_at       : chr "2015-06-03T22:16:26Z"
  .. .. ..$ pushed_at        : chr "2015-06-04T00:18:00Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/2013-11_sfu.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/2013-11_sfu.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/2013-11_sfu.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/2013-11_sfu"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 8701
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 10
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 10
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 14152301
  .. .. ..$ name             : chr "2014-01-27-miami"
  .. .. ..$ full_name        : chr "jennybc/2014-01-27-miami"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/2014-01-27-miami"
  .. .. ..$ description      : chr "Software Carpentry Bootcamp at the University of Miami"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/2014-01-27-miami"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/2014-01-27-miami/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/2014-01-27-miami/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/2014-01-27-miami/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/2014-01-27-miami/deployments"
  .. .. ..$ created_at       : chr "2013-11-05T19:55:23Z"
  .. .. ..$ updated_at       : chr "2014-06-02T08:52:46Z"
  .. .. ..$ pushed_at        : chr "2014-01-28T07:01:26Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/2014-01-27-miami.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/2014-01-27-miami.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/2014-01-27-miami.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/2014-01-27-miami"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 16662
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "Python"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 6
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 4
  .. .. ..$ forks            : int 6
  .. .. ..$ open_issues      : int 4
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "gh-pages"
  .. ..$ :List of 68
  .. .. ..$ id               : int 18495266
  .. .. ..$ name             : chr "2014-05-12-ubc"
  .. .. ..$ full_name        : chr "jennybc/2014-05-12-ubc"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/2014-05-12-ubc"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/2014-05-12-ubc/deployments"
  .. .. ..$ created_at       : chr "2014-04-06T17:45:52Z"
  .. .. ..$ updated_at       : chr "2014-06-16T08:36:43Z"
  .. .. ..$ pushed_at        : chr "2014-05-14T02:21:17Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/2014-05-12-ubc.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/2014-05-12-ubc.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/2014-05-12-ubc.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/2014-05-12-ubc"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 33968
  .. .. ..$ stargazers_count : int 8
  .. .. ..$ watchers_count   : int 8
  .. .. ..$ language         : chr "Python"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 8
  .. .. ..$ default_branch   : chr "gh-pages"
  .. ..$ :List of 68
  .. .. ..$ id               : int 31132213
  .. .. ..$ name             : chr "2015-02-23_bryan-fields-talk"
  .. .. ..$ full_name        : chr "jennybc/2015-02-23_bryan-fields-talk"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/2015-02-23_bryan-fields-talk"
  .. .. ..$ description      : chr "Talk at Workshop on Visualization for Big Data: Strategies and Principles, Fields Institute http://www.fields.u"| __truncated__
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/2015-02-23_bryan-fields-talk/deployments"
  .. .. ..$ created_at       : chr "2015-02-21T16:45:59Z"
  .. .. ..$ updated_at       : chr "2016-09-21T05:07:32Z"
  .. .. ..$ pushed_at        : chr "2015-06-03T19:50:01Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/2015-02-23_bryan-fields-talk.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/2015-02-23_bryan-fields-talk.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/2015-02-23_bryan-fields-talk.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/2015-02-23_bryan-fields-talk"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 9470
  .. .. ..$ stargazers_count : int 31
  .. .. ..$ watchers_count   : int 31
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 8
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 8
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 31
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 38192453
  .. .. ..$ name             : chr "2015-06-28_r-summit-talk"
  .. .. ..$ full_name        : chr "jennybc/2015-06-28_r-summit-talk"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/2015-06-28_r-summit-talk"
  .. .. ..$ description      : chr "Talk at R Summit and Workshop about using R Markdown and GitHub in your workflow"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/2015-06-28_r-summit-talk/deployments"
  .. .. ..$ created_at       : chr "2015-06-28T08:50:40Z"
  .. .. ..$ updated_at       : chr "2016-02-05T16:44:13Z"
  .. .. ..$ pushed_at        : chr "2015-06-28T19:41:30Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/2015-06-28_r-summit-talk.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/2015-06-28_r-summit-talk.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/2015-06-28_r-summit-talk.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/2015-06-28_r-summit-talk"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 3979
  .. .. ..$ stargazers_count : int 37
  .. .. ..$ watchers_count   : int 37
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 9
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 9
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 37
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 40545399
  .. .. ..$ name             : chr "2015-08_bryan-jsm-stat-data-sci-talk"
  .. .. ..$ full_name        : chr "jennybc/2015-08_bryan-jsm-stat-data-sci-talk"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/2015-08_bryan-jsm-stat-data-sci-talk"
  .. .. ..$ description      : chr "Bryan talk at JSM 2015 re: are statisticians data scientists"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/2015-08_bryan-jsm-stat-data-sci-talk/deployments"
  .. .. ..$ created_at       : chr "2015-08-11T14:09:18Z"
  .. .. ..$ updated_at       : chr "2016-03-28T00:31:47Z"
  .. .. ..$ pushed_at        : chr "2015-10-30T20:06:24Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/2015-08_bryan-jsm-stat-data-sci-talk.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/2015-08_bryan-jsm-stat-data-sci-talk.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/2015-08_bryan-jsm-stat-data-sci-talk.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/2015-08_bryan-jsm-stat-data-sci-talk"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 3163
  .. .. ..$ stargazers_count : int 16
  .. .. ..$ watchers_count   : int 16
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 4
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 4
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 16
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 65086873
  .. .. ..$ name             : chr "2015_Coartic"
  .. .. ..$ full_name        : chr "jennybc/2015_Coartic"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/2015_Coartic"
  .. .. ..$ description      : chr "Mahr, et al. (2015). Anticipatory coarticulation facilitates word recognition in toddlers."
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/2015_Coartic"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/2015_Coartic/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/2015_Coartic/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/2015_Coartic/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/2015_Coartic/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/2015_Coartic/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/2015_Coartic/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/2015_Coartic/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/2015_Coartic/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/2015_Coartic/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/2015_Coartic/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/2015_Coartic/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/2015_Coartic/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/2015_Coartic/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/2015_Coartic/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/2015_Coartic/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/2015_Coartic/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/2015_Coartic/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/2015_Coartic/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/2015_Coartic/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/2015_Coartic/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/2015_Coartic/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/2015_Coartic/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/2015_Coartic/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/2015_Coartic/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/2015_Coartic/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/2015_Coartic/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/2015_Coartic/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/2015_Coartic/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/2015_Coartic/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/2015_Coartic/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/2015_Coartic/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/2015_Coartic/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/2015_Coartic/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/2015_Coartic/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/2015_Coartic/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/2015_Coartic/deployments"
  .. .. ..$ created_at       : chr "2016-08-06T14:42:59Z"
  .. .. ..$ updated_at       : chr "2016-08-06T14:43:00Z"
  .. .. ..$ pushed_at        : chr "2016-08-02T17:21:39Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/2015_Coartic.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/2015_Coartic.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/2015_Coartic.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/2015_Coartic"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 16793
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "TeX"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi FALSE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 58010746
  .. .. ..$ name             : chr "2016-06_spreadsheets"
  .. .. ..$ full_name        : chr "jennybc/2016-06_spreadsheets"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/2016-06_spreadsheets"
  .. .. ..$ description      : chr "Talks given in May and June 2016."
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/2016-06_spreadsheets/deployments"
  .. .. ..$ created_at       : chr "2016-05-04T00:31:47Z"
  .. .. ..$ updated_at       : chr "2016-10-08T13:24:44Z"
  .. .. ..$ pushed_at        : chr "2016-08-01T04:29:09Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/2016-06_spreadsheets.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/2016-06_spreadsheets.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/2016-06_spreadsheets.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/2016-06_spreadsheets"
  .. .. ..$ homepage         : chr "https://speakerdeck.com/jennybc/spreadsheets"
  .. .. ..$ size             : int 13661
  .. .. ..$ stargazers_count : int 32
  .. .. ..$ watchers_count   : int 32
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 9
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 9
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 32
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 63552154
  .. .. ..$ name             : chr "2016-07_data-carpentry-uzh"
  .. .. ..$ full_name        : chr "jennybc/2016-07_data-carpentry-uzh"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/2016-07_data-carpentry-uzh"
  .. .. ..$ description      : chr "Some of my bits for University of Zurich Data Carpentry Workshop"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/2016-07_data-carpentry-uzh/deployments"
  .. .. ..$ created_at       : chr "2016-07-17T20:57:25Z"
  .. .. ..$ updated_at       : chr "2016-07-17T20:57:39Z"
  .. .. ..$ pushed_at        : chr "2016-07-17T20:57:26Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/2016-07_data-carpentry-uzh.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/2016-07_data-carpentry-uzh.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/2016-07_data-carpentry-uzh.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/2016-07_data-carpentry-uzh"
  .. .. ..$ homepage         : chr "https://markrobinsonuzh.github.io/2016-07-18-zurich/"
  .. .. ..$ size             : int 0
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 15151129
  .. .. ..$ name             : chr "545A_hw06"
  .. .. ..$ full_name        : chr "jennybc/545A_hw06"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/545A_hw06"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/545A_hw06"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/545A_hw06/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/545A_hw06/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/545A_hw06/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/545A_hw06/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/545A_hw06/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/545A_hw06/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/545A_hw06/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/545A_hw06/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/545A_hw06/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/545A_hw06/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/545A_hw06/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/545A_hw06/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/545A_hw06/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/545A_hw06/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/545A_hw06/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/545A_hw06/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/545A_hw06/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/545A_hw06/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/545A_hw06/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/545A_hw06/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/545A_hw06/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/545A_hw06/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/545A_hw06/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/545A_hw06/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/545A_hw06/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/545A_hw06/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/545A_hw06/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/545A_hw06/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/545A_hw06/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/545A_hw06/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/545A_hw06/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/545A_hw06/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/545A_hw06/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/545A_hw06/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/545A_hw06/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/545A_hw06/deployments"
  .. .. ..$ created_at       : chr "2013-12-13T00:23:39Z"
  .. .. ..$ updated_at       : chr "2013-12-13T00:41:42Z"
  .. .. ..$ pushed_at        : chr "2013-12-13T00:40:56Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/545A_hw06.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/545A_hw06.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/545A_hw06.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/545A_hw06"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 121
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 45563715
  .. .. ..$ name             : chr "access-r-source"
  .. .. ..$ full_name        : chr "jennybc/access-r-source"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/access-r-source"
  .. .. ..$ description      : chr "How to get at R source. I am sick of Googling this. I am writing it down this time."
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/access-r-source"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/access-r-source/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/access-r-source/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/access-r-source/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/access-r-source/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/access-r-source/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/access-r-source/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/access-r-source/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/access-r-source/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/access-r-source/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/access-r-source/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/access-r-source/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/access-r-source/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/access-r-source/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/access-r-source/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/access-r-source/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/access-r-source/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/access-r-source/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/access-r-source/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/access-r-source/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/access-r-source/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/access-r-source/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/access-r-source/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/access-r-source/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/access-r-source/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/access-r-source/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/access-r-source/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/access-r-source/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/access-r-source/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/access-r-source/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/access-r-source/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/access-r-source/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/access-r-source/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/access-r-source/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/access-r-source/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/access-r-source/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/access-r-source/deployments"
  .. .. ..$ created_at       : chr "2015-11-04T19:55:40Z"
  .. .. ..$ updated_at       : chr "2016-08-31T07:36:02Z"
  .. .. ..$ pushed_at        : chr "2015-11-05T00:48:51Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/access-r-source.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/access-r-source.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/access-r-source.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/access-r-source"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 144
  .. .. ..$ stargazers_count : int 29
  .. .. ..$ watchers_count   : int 29
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 2
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 2
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 29
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 21595048
  .. .. ..$ name             : chr "adv-r"
  .. .. ..$ full_name        : chr "jennybc/adv-r"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/adv-r"
  .. .. ..$ description      : chr "Advanced R programming: a book"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/adv-r"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/adv-r/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/adv-r/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/adv-r/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/adv-r/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/adv-r/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/adv-r/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/adv-r/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/adv-r/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/adv-r/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/adv-r/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/adv-r/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/adv-r/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/adv-r/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/adv-r/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/adv-r/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/adv-r/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/adv-r/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/adv-r/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/adv-r/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/adv-r/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/adv-r/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/adv-r/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/adv-r/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/adv-r/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/adv-r/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/adv-r/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/adv-r/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/adv-r/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/adv-r/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/adv-r/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/adv-r/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/adv-r/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/adv-r/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/adv-r/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/adv-r/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/adv-r/deployments"
  .. .. ..$ created_at       : chr "2014-07-08T02:27:58Z"
  .. .. ..$ updated_at       : chr "2015-01-23T17:20:32Z"
  .. .. ..$ pushed_at        : chr "2015-10-29T19:54:04Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/adv-r.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/adv-r.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/adv-r.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/adv-r"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 7584
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "TeX"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 47105600
  .. .. ..$ name             : chr "analyze-github-stuff-with-r"
  .. .. ..$ full_name        : chr "jennybc/analyze-github-stuff-with-r"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/analyze-github-stuff-with-r"
  .. .. ..$ description      : chr "Marshal data from the GitHub API with R"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/analyze-github-stuff-with-r/deployments"
  .. .. ..$ created_at       : chr "2015-11-30T08:38:49Z"
  .. .. ..$ updated_at       : chr "2016-04-28T05:13:18Z"
  .. .. ..$ pushed_at        : chr "2015-12-02T19:40:03Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/analyze-github-stuff-with-r.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/analyze-github-stuff-with-r.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/analyze-github-stuff-with-r.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/analyze-github-stuff-with-r"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 377
  .. .. ..$ stargazers_count : int 10
  .. .. ..$ watchers_count   : int 10
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 10
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 20746767
  .. .. ..$ name             : chr "arms-length-render"
  .. .. ..$ full_name        : chr "jennybc/arms-length-render"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/arms-length-render"
  .. .. ..$ description      : chr "Usage of rmarkdown::render() when intermediates and outputs don't live with source"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/arms-length-render"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/arms-length-render/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/arms-length-render/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/arms-length-render/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/arms-length-render/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/arms-length-render/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/arms-length-render/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/arms-length-render/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/arms-length-render/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/arms-length-render/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/arms-length-render/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/arms-length-render/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/arms-length-render/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/arms-length-render/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/arms-length-render/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/arms-length-render/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/arms-length-render/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/arms-length-render/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/arms-length-render/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/arms-length-render/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/arms-length-render/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/arms-length-render/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/arms-length-render/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/arms-length-render/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/arms-length-render/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/arms-length-render/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/arms-length-render/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/arms-length-render/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/arms-length-render/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/arms-length-render/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/arms-length-render/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/arms-length-render/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/arms-length-render/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/arms-length-render/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/arms-length-render/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/arms-length-render/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/arms-length-render/deployments"
  .. .. ..$ created_at       : chr "2014-06-11T22:40:01Z"
  .. .. ..$ updated_at       : chr "2015-11-04T13:00:19Z"
  .. .. ..$ pushed_at        : chr "2014-06-14T02:24:35Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/arms-length-render.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/arms-length-render.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/arms-length-render.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/arms-length-render"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 456
  .. .. ..$ stargazers_count : int 3
  .. .. ..$ watchers_count   : int 3
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 3
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 54949331
  .. .. ..$ name             : chr "assertr"
  .. .. ..$ full_name        : chr "jennybc/assertr"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/assertr"
  .. .. ..$ description      : chr "Assertive programming for R analysis pipelines"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/assertr"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/assertr/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/assertr/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/assertr/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/assertr/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/assertr/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/assertr/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/assertr/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/assertr/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/assertr/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/assertr/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/assertr/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/assertr/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/assertr/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/assertr/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/assertr/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/assertr/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/assertr/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/assertr/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/assertr/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/assertr/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/assertr/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/assertr/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/assertr/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/assertr/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/assertr/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/assertr/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/assertr/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/assertr/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/assertr/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/assertr/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/assertr/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/assertr/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/assertr/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/assertr/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/assertr/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/assertr/deployments"
  .. .. ..$ created_at       : chr "2016-03-29T05:48:27Z"
  .. .. ..$ updated_at       : chr "2016-03-30T11:30:26Z"
  .. .. ..$ pushed_at        : chr "2016-03-29T15:39:59Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/assertr.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/assertr.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/assertr.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/assertr"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 14207
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 68076182
  .. .. ..$ name             : chr "bellybutton"
  .. .. ..$ full_name        : chr "jennybc/bellybutton"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/bellybutton"
  .. .. ..$ description      : chr "Data from \"A Jungle in There\" re: bacterial diversity in the adult human belly button"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/bellybutton"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/bellybutton/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/bellybutton/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/bellybutton/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/bellybutton/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/bellybutton/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/bellybutton/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/bellybutton/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/bellybutton/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/bellybutton/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/bellybutton/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/bellybutton/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/bellybutton/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/bellybutton/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/bellybutton/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/bellybutton/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/bellybutton/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/bellybutton/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/bellybutton/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/bellybutton/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/bellybutton/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/bellybutton/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/bellybutton/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/bellybutton/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/bellybutton/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/bellybutton/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/bellybutton/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/bellybutton/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/bellybutton/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/bellybutton/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/bellybutton/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/bellybutton/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/bellybutton/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/bellybutton/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/bellybutton/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/bellybutton/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/bellybutton/deployments"
  .. .. ..$ created_at       : chr "2016-09-13T05:08:39Z"
  .. .. ..$ updated_at       : chr "2016-09-13T07:50:37Z"
  .. .. ..$ pushed_at        : chr "2016-09-13T05:21:22Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/bellybutton.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/bellybutton.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/bellybutton.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/bellybutton"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 1039
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 51183345
  .. .. ..$ name             : chr "bingo"
  .. .. ..$ full_name        : chr "jennybc/bingo"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/bingo"
  .. .. ..$ description      : chr "Generate Bingo cards with R."
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/bingo"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/bingo/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/bingo/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/bingo/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/bingo/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/bingo/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/bingo/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/bingo/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/bingo/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/bingo/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/bingo/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/bingo/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/bingo/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/bingo/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/bingo/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/bingo/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/bingo/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/bingo/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/bingo/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/bingo/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/bingo/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/bingo/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/bingo/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/bingo/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/bingo/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/bingo/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/bingo/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/bingo/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/bingo/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/bingo/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/bingo/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/bingo/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/bingo/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/bingo/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/bingo/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/bingo/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/bingo/deployments"
  .. .. ..$ created_at       : chr "2016-02-06T00:49:24Z"
  .. .. ..$ updated_at       : chr "2016-07-03T03:40:40Z"
  .. .. ..$ pushed_at        : chr "2016-07-12T05:34:57Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/bingo.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/bingo.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/bingo.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/bingo"
  .. .. ..$ homepage         : chr "http://daattali.com/shiny/bingo/"
  .. .. ..$ size             : int 540
  .. .. ..$ stargazers_count : int 5
  .. .. ..$ watchers_count   : int 5
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 19
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 3
  .. .. ..$ forks            : int 19
  .. .. ..$ open_issues      : int 3
  .. .. ..$ watchers         : int 5
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 19618169
  .. .. ..$ name             : chr "bioinformatics.ca-swc-r"
  .. .. ..$ full_name        : chr "jennybc/bioinformatics.ca-swc-r"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/bioinformatics.ca-swc-r"
  .. .. ..$ description      : chr "Software Carpentry Bootcamp for bioinformatics.ca 2014-05-12"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/bioinformatics.ca-swc-r/deployments"
  .. .. ..$ created_at       : chr "2014-05-09T16:43:30Z"
  .. .. ..$ updated_at       : chr "2014-05-14T19:03:37Z"
  .. .. ..$ pushed_at        : chr "2014-05-13T23:23:43Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/bioinformatics.ca-swc-r.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/bioinformatics.ca-swc-r.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/bioinformatics.ca-swc-r.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/bioinformatics.ca-swc-r"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 204
  .. .. ..$ stargazers_count : int 6
  .. .. ..$ watchers_count   : int 6
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 6
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 12046143
  .. .. ..$ name             : chr "BIRS_13w5083"
  .. .. ..$ full_name        : chr "jennybc/BIRS_13w5083"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/BIRS_13w5083"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/BIRS_13w5083"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/BIRS_13w5083/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/BIRS_13w5083/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/BIRS_13w5083/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/BIRS_13w5083/deployments"
  .. .. ..$ created_at       : chr "2013-08-12T02:22:42Z"
  .. .. ..$ updated_at       : chr "2014-01-27T16:19:42Z"
  .. .. ..$ pushed_at        : chr "2013-09-05T22:28:35Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/BIRS_13w5083.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/BIRS_13w5083.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/BIRS_13w5083.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/BIRS_13w5083"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 204
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 61181748
  .. .. ..$ name             : chr "blarg"
  .. .. ..$ full_name        : chr "jennybc/blarg"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/blarg"
  .. .. ..$ description      : chr "Oops I should have kept this around longer"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/blarg"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/blarg/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/blarg/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/blarg/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/blarg/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/blarg/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/blarg/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/blarg/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/blarg/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/blarg/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/blarg/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/blarg/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/blarg/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/blarg/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/blarg/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/blarg/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/blarg/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/blarg/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/blarg/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/blarg/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/blarg/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/blarg/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/blarg/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/blarg/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/blarg/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/blarg/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/blarg/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/blarg/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/blarg/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/blarg/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/blarg/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/blarg/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/blarg/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/blarg/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/blarg/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/blarg/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/blarg/deployments"
  .. .. ..$ created_at       : chr "2016-06-15T06:05:16Z"
  .. .. ..$ updated_at       : chr "2016-06-15T06:05:16Z"
  .. .. ..$ pushed_at        : chr "2016-06-15T06:05:17Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/blarg.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/blarg.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/blarg.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/blarg"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 0
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 62916989
  .. .. ..$ name             : chr "bookdown"
  .. .. ..$ full_name        : chr "jennybc/bookdown"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/bookdown"
  .. .. ..$ description      : chr "Authoring Books with R Markdown"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/bookdown"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/bookdown/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/bookdown/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/bookdown/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/bookdown/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/bookdown/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/bookdown/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/bookdown/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/bookdown/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/bookdown/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/bookdown/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/bookdown/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/bookdown/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/bookdown/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/bookdown/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/bookdown/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/bookdown/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/bookdown/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/bookdown/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/bookdown/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/bookdown/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/bookdown/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/bookdown/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/bookdown/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/bookdown/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/bookdown/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/bookdown/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/bookdown/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/bookdown/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/bookdown/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/bookdown/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/bookdown/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/bookdown/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/bookdown/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/bookdown/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/bookdown/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/bookdown/deployments"
  .. .. ..$ created_at       : chr "2016-07-08T20:55:41Z"
  .. .. ..$ updated_at       : chr "2016-07-08T20:55:43Z"
  .. .. ..$ pushed_at        : chr "2016-07-08T22:29:24Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/bookdown.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/bookdown.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/bookdown.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/bookdown"
  .. .. ..$ homepage         : chr "https://bookdown.org"
  .. .. ..$ size             : int 9880
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "JavaScript"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi FALSE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 10124989
  .. .. ..$ name             : chr "boot-camps"
  .. .. ..$ full_name        : chr "jennybc/boot-camps"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/boot-camps"
  .. .. ..$ description      : chr "Software Carpentry boot camp material"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/boot-camps"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/boot-camps/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/boot-camps/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/boot-camps/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/boot-camps/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/boot-camps/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/boot-camps/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/boot-camps/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/boot-camps/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/boot-camps/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/boot-camps/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/boot-camps/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/boot-camps/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/boot-camps/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/boot-camps/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/boot-camps/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/boot-camps/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/boot-camps/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/boot-camps/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/boot-camps/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/boot-camps/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/boot-camps/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/boot-camps/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/boot-camps/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/boot-camps/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/boot-camps/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/boot-camps/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/boot-camps/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/boot-camps/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/boot-camps/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/boot-camps/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/boot-camps/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/boot-camps/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/boot-camps/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/boot-camps/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/boot-camps/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/boot-camps/deployments"
  .. .. ..$ created_at       : chr "2013-05-17T14:24:56Z"
  .. .. ..$ updated_at       : chr "2015-12-07T23:11:40Z"
  .. .. ..$ pushed_at        : chr "2013-05-27T18:33:09Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/boot-camps.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/boot-camps.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/boot-camps.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/boot-camps"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 96325
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "Python"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 45448660
  .. .. ..$ name             : chr "candy"
  .. .. ..$ full_name        : chr "jennybc/candy"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/candy"
  .. .. ..$ description      : chr "candy survey data"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/candy"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/candy/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/candy/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/candy/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/candy/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/candy/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/candy/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/candy/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/candy/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/candy/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/candy/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/candy/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/candy/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/candy/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/candy/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/candy/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/candy/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/candy/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/candy/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/candy/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/candy/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/candy/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/candy/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/candy/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/candy/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/candy/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/candy/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/candy/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/candy/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/candy/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/candy/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/candy/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/candy/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/candy/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/candy/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/candy/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/candy/deployments"
  .. .. ..$ created_at       : chr "2015-11-03T07:15:38Z"
  .. .. ..$ updated_at       : chr "2015-11-05T21:34:05Z"
  .. .. ..$ pushed_at        : chr "2015-11-06T19:03:00Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/candy.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/candy.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/candy.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/candy"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 3529
  .. .. ..$ stargazers_count : int 6
  .. .. ..$ watchers_count   : int 6
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 3
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 2
  .. .. ..$ forks            : int 3
  .. .. ..$ open_issues      : int 2
  .. .. ..$ watchers         : int 6
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 27112806
  .. .. ..$ name             : chr "CoffeeCoop"
  .. .. ..$ full_name        : chr "jennybc/CoffeeCoop"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/CoffeeCoop"
  .. .. ..$ description      : chr "the coffee coop at UBC biodiv building"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/CoffeeCoop"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/CoffeeCoop/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/CoffeeCoop/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/CoffeeCoop/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/CoffeeCoop/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/CoffeeCoop/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/CoffeeCoop/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/CoffeeCoop/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/CoffeeCoop/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/CoffeeCoop/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/CoffeeCoop/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/CoffeeCoop/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/CoffeeCoop/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/CoffeeCoop/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/CoffeeCoop/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/CoffeeCoop/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/CoffeeCoop/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/CoffeeCoop/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/CoffeeCoop/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/CoffeeCoop/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/CoffeeCoop/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/CoffeeCoop/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/CoffeeCoop/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/CoffeeCoop/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/CoffeeCoop/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/CoffeeCoop/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/CoffeeCoop/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/CoffeeCoop/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/CoffeeCoop/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/CoffeeCoop/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/CoffeeCoop/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/CoffeeCoop/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/CoffeeCoop/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/CoffeeCoop/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/CoffeeCoop/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/CoffeeCoop/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/CoffeeCoop/deployments"
  .. .. ..$ created_at       : chr "2014-11-25T06:43:58Z"
  .. .. ..$ updated_at       : chr "2014-11-25T06:43:59Z"
  .. .. ..$ pushed_at        : chr "2014-11-25T06:44:18Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/CoffeeCoop.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/CoffeeCoop.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/CoffeeCoop.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/CoffeeCoop"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 4617
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 22161372
  .. .. ..$ name             : chr "datacarpentry"
  .. .. ..$ full_name        : chr "jennybc/datacarpentry"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/datacarpentry"
  .. .. ..$ description      : chr "Data Carpentry workshop materials"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/datacarpentry"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/datacarpentry/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/datacarpentry/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/datacarpentry/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/datacarpentry/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/datacarpentry/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/datacarpentry/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/datacarpentry/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/datacarpentry/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/datacarpentry/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/datacarpentry/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/datacarpentry/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/datacarpentry/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/datacarpentry/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/datacarpentry/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/datacarpentry/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/datacarpentry/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/datacarpentry/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/datacarpentry/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/datacarpentry/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/datacarpentry/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/datacarpentry/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/datacarpentry/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/datacarpentry/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/datacarpentry/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/datacarpentry/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/datacarpentry/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/datacarpentry/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/datacarpentry/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/datacarpentry/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/datacarpentry/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/datacarpentry/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/datacarpentry/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/datacarpentry/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/datacarpentry/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/datacarpentry/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/datacarpentry/deployments"
  .. .. ..$ created_at       : chr "2014-07-23T16:35:39Z"
  .. .. ..$ updated_at       : chr "2015-12-25T17:28:46Z"
  .. .. ..$ pushed_at        : chr "2014-11-25T00:48:43Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/datacarpentry.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/datacarpentry.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/datacarpentry.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/datacarpentry"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 12282
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 50471649
  .. .. ..$ name             : chr "ddpcr"
  .. .. ..$ full_name        : chr "jennybc/ddpcr"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/ddpcr"
  .. .. ..$ description      : chr "Analysis and visualization of Droplet Digital PCR data in R and on the web"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/ddpcr"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/ddpcr/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/ddpcr/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/ddpcr/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/ddpcr/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/ddpcr/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/ddpcr/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/ddpcr/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/ddpcr/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/ddpcr/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/ddpcr/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/ddpcr/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/ddpcr/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/ddpcr/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/ddpcr/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/ddpcr/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/ddpcr/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/ddpcr/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/ddpcr/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/ddpcr/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/ddpcr/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/ddpcr/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/ddpcr/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/ddpcr/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/ddpcr/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/ddpcr/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/ddpcr/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/ddpcr/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/ddpcr/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/ddpcr/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/ddpcr/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/ddpcr/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/ddpcr/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/ddpcr/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/ddpcr/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/ddpcr/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/ddpcr/deployments"
  .. .. ..$ created_at       : chr "2016-01-27T01:13:49Z"
  .. .. ..$ updated_at       : chr "2016-01-27T01:13:50Z"
  .. .. ..$ pushed_at        : chr "2016-06-23T04:54:56Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/ddpcr.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/ddpcr.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/ddpcr.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/ddpcr"
  .. .. ..$ homepage         : chr "http://daattali.com/shiny/ddpcr/"
  .. .. ..$ size             : int 9286
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi FALSE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 40727345
  .. .. ..$ name             : chr "devtools"
  .. .. ..$ full_name        : chr "jennybc/devtools"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/devtools"
  .. .. ..$ description      : chr "Tools to make an R developer's life easier"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/devtools"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/devtools/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/devtools/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/devtools/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/devtools/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/devtools/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/devtools/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/devtools/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/devtools/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/devtools/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/devtools/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/devtools/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/devtools/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/devtools/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/devtools/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/devtools/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/devtools/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/devtools/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/devtools/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/devtools/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/devtools/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/devtools/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/devtools/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/devtools/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/devtools/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/devtools/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/devtools/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/devtools/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/devtools/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/devtools/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/devtools/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/devtools/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/devtools/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/devtools/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/devtools/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/devtools/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/devtools/deployments"
  .. .. ..$ created_at       : chr "2015-08-14T17:23:33Z"
  .. .. ..$ updated_at       : chr "2016-01-14T03:00:37Z"
  .. .. ..$ pushed_at        : chr "2016-09-09T19:38:16Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/devtools.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/devtools.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/devtools.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/devtools"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 3615
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 46666194
  .. .. ..$ name             : chr "diffr"
  .. .. ..$ full_name        : chr "jennybc/diffr"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/diffr"
  .. .. ..$ description      : chr "R package for creating code differences in JavaScript based on codediff.js"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/diffr"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/diffr/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/diffr/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/diffr/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/diffr/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/diffr/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/diffr/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/diffr/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/diffr/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/diffr/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/diffr/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/diffr/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/diffr/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/diffr/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/diffr/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/diffr/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/diffr/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/diffr/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/diffr/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/diffr/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/diffr/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/diffr/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/diffr/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/diffr/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/diffr/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/diffr/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/diffr/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/diffr/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/diffr/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/diffr/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/diffr/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/diffr/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/diffr/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/diffr/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/diffr/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/diffr/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/diffr/deployments"
  .. .. ..$ created_at       : chr "2015-11-22T15:22:57Z"
  .. .. ..$ updated_at       : chr "2015-11-22T16:29:40Z"
  .. .. ..$ pushed_at        : chr "2015-11-22T15:24:54Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/diffr.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/diffr.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/diffr.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/diffr"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 90
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "JavaScript"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 45375376
  .. .. ..$ name             : chr "dplyr"
  .. .. ..$ full_name        : chr "jennybc/dplyr"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/dplyr"
  .. .. ..$ description      : chr "Plyr specialised for data frames: faster & with remote datastores"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/dplyr"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/dplyr/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/dplyr/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/dplyr/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/dplyr/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/dplyr/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/dplyr/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/dplyr/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/dplyr/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/dplyr/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/dplyr/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/dplyr/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/dplyr/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/dplyr/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/dplyr/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/dplyr/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/dplyr/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/dplyr/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/dplyr/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/dplyr/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/dplyr/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/dplyr/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/dplyr/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/dplyr/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/dplyr/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/dplyr/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/dplyr/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/dplyr/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/dplyr/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/dplyr/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/dplyr/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/dplyr/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/dplyr/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/dplyr/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/dplyr/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/dplyr/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/dplyr/deployments"
  .. .. ..$ created_at       : chr "2015-11-02T06:09:26Z"
  .. .. ..$ updated_at       : chr "2016-05-22T22:00:00Z"
  .. .. ..$ pushed_at        : chr "2016-05-29T06:50:20Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/dplyr.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/dplyr.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/dplyr.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/dplyr"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 10606
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 61313360
  .. .. ..$ name             : chr "eigencoder"
  .. .. ..$ full_name        : chr "jennybc/eigencoder"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jennybc"
  .. .. .. ..$ id                 : int 599454
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/599454?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jennybc"
  .. .. .. ..$ html_url           : chr "https://github.com/jennybc"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jennybc/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jennybc/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jennybc/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jennybc/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jennybc/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jennybc/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jennybc/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jennybc/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jennybc/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jennybc/eigencoder"
  .. .. ..$ description      : chr "Generalizing programmers"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jennybc/eigencoder"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jennybc/eigencoder/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jennybc/eigencoder/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jennybc/eigencoder/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jennybc/eigencoder/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jennybc/eigencoder/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jennybc/eigencoder/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jennybc/eigencoder/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jennybc/eigencoder/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jennybc/eigencoder/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jennybc/eigencoder/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jennybc/eigencoder/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jennybc/eigencoder/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jennybc/eigencoder/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jennybc/eigencoder/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jennybc/eigencoder/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jennybc/eigencoder/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jennybc/eigencoder/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jennybc/eigencoder/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jennybc/eigencoder/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jennybc/eigencoder/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jennybc/eigencoder/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jennybc/eigencoder/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jennybc/eigencoder/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jennybc/eigencoder/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jennybc/eigencoder/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jennybc/eigencoder/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jennybc/eigencoder/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jennybc/eigencoder/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jennybc/eigencoder/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jennybc/eigencoder/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jennybc/eigencoder/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jennybc/eigencoder/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jennybc/eigencoder/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jennybc/eigencoder/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jennybc/eigencoder/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jennybc/eigencoder/deployments"
  .. .. ..$ created_at       : chr "2016-06-16T17:34:56Z"
  .. .. ..$ updated_at       : chr "2016-06-16T17:34:57Z"
  .. .. ..$ pushed_at        : chr "2016-06-16T19:43:35Z"
  .. .. ..$ git_url          : chr "git://github.com/jennybc/eigencoder.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jennybc/eigencoder.git"
  .. .. ..$ clone_url        : chr "https://github.com/jennybc/eigencoder.git"
  .. .. ..$ svn_url          : chr "https://github.com/jennybc/eigencoder"
  .. .. ..$ homepage         : chr "http://trestletech.com/2016/03/09/eigencoder/"
  .. .. ..$ size             : int 31
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  ..$ :List of 30
  .. ..$ :List of 68
  .. .. ..$ id               : int 41645119
  .. .. ..$ name             : chr "advdatasci"
  .. .. ..$ full_name        : chr "jtleek/advdatasci"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/advdatasci"
  .. .. ..$ description      : chr "Advanced Data Science @ JHU Biostats"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/advdatasci"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/advdatasci/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/advdatasci/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/advdatasci/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/advdatasci/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/advdatasci/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/advdatasci/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/advdatasci/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/advdatasci/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/advdatasci/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/advdatasci/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/advdatasci/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/advdatasci/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/advdatasci/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/advdatasci/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/advdatasci/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/advdatasci/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/advdatasci/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/advdatasci/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/advdatasci/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/advdatasci/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/advdatasci/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/advdatasci/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/advdatasci/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/advdatasci/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/advdatasci/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/advdatasci/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/advdatasci/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/advdatasci/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/advdatasci/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/advdatasci/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/advdatasci/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/advdatasci/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/advdatasci/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/advdatasci/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/advdatasci/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/advdatasci/deployments"
  .. .. ..$ created_at       : chr "2015-08-30T22:27:26Z"
  .. .. ..$ updated_at       : chr "2016-02-02T18:09:49Z"
  .. .. ..$ pushed_at        : chr "2015-12-16T18:12:31Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/advdatasci.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/advdatasci.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/advdatasci.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/advdatasci"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 200992
  .. .. ..$ stargazers_count : int 10
  .. .. ..$ watchers_count   : int 10
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 4
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 4
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 10
  .. .. ..$ default_branch   : chr "gh-pages"
  .. ..$ :List of 68
  .. .. ..$ id               : int 47568815
  .. .. ..$ name             : chr "advdatasci-swirl"
  .. .. ..$ full_name        : chr "jtleek/advdatasci-swirl"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/advdatasci-swirl"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/advdatasci-swirl"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/advdatasci-swirl/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/advdatasci-swirl/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/advdatasci-swirl/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/advdatasci-swirl/deployments"
  .. .. ..$ created_at       : chr "2015-12-07T17:43:53Z"
  .. .. ..$ updated_at       : chr "2016-04-21T20:37:46Z"
  .. .. ..$ pushed_at        : chr "2015-12-09T20:21:13Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/advdatasci-swirl.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/advdatasci-swirl.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/advdatasci-swirl.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/advdatasci-swirl"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 188
  .. .. ..$ stargazers_count : int 3
  .. .. ..$ watchers_count   : int 3
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 3
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 65922328
  .. .. ..$ name             : chr "advdatasci16"
  .. .. ..$ full_name        : chr "jtleek/advdatasci16"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/advdatasci16"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/advdatasci16"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/advdatasci16/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/advdatasci16/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/advdatasci16/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/advdatasci16/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/advdatasci16/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/advdatasci16/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/advdatasci16/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/advdatasci16/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/advdatasci16/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/advdatasci16/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/advdatasci16/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/advdatasci16/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/advdatasci16/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/advdatasci16/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/advdatasci16/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/advdatasci16/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/advdatasci16/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/advdatasci16/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/advdatasci16/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/advdatasci16/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/advdatasci16/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/advdatasci16/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/advdatasci16/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/advdatasci16/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/advdatasci16/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/advdatasci16/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/advdatasci16/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/advdatasci16/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/advdatasci16/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/advdatasci16/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/advdatasci16/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/advdatasci16/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/advdatasci16/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/advdatasci16/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/advdatasci16/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/advdatasci16/deployments"
  .. .. ..$ created_at       : chr "2016-08-17T16:08:20Z"
  .. .. ..$ updated_at       : chr "2016-08-23T20:51:11Z"
  .. .. ..$ pushed_at        : chr "2016-10-19T15:48:17Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/advdatasci16.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/advdatasci16.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/advdatasci16.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/advdatasci16"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 1789
  .. .. ..$ stargazers_count : int 3
  .. .. ..$ watchers_count   : int 3
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 4
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 4
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 3
  .. .. ..$ default_branch   : chr "gh-pages"
  .. ..$ :List of 68
  .. .. ..$ id               : int 66415014
  .. .. ..$ name             : chr "advdatasci_swirl"
  .. .. ..$ full_name        : chr "jtleek/advdatasci_swirl"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/advdatasci_swirl"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/advdatasci_swirl"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/advdatasci_swirl/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/advdatasci_swirl/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/advdatasci_swirl/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/advdatasci_swirl/deployments"
  .. .. ..$ created_at       : chr "2016-08-24T00:44:35Z"
  .. .. ..$ updated_at       : chr "2016-10-24T15:22:00Z"
  .. .. ..$ pushed_at        : chr "2016-10-24T15:23:51Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/advdatasci_swirl.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/advdatasci_swirl.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/advdatasci_swirl.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/advdatasci_swirl"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 4682
  .. .. ..$ stargazers_count : int 3
  .. .. ..$ watchers_count   : int 3
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 2
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 2
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 3
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 12441219
  .. .. ..$ name             : chr "ballgown"
  .. .. ..$ full_name        : chr "jtleek/ballgown"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/ballgown"
  .. .. ..$ description      : chr "code for manipulating ballgown output in R"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/ballgown"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/ballgown/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/ballgown/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/ballgown/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/ballgown/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/ballgown/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/ballgown/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/ballgown/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/ballgown/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/ballgown/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/ballgown/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/ballgown/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/ballgown/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/ballgown/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/ballgown/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/ballgown/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/ballgown/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/ballgown/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/ballgown/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/ballgown/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/ballgown/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/ballgown/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/ballgown/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/ballgown/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/ballgown/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/ballgown/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/ballgown/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/ballgown/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/ballgown/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/ballgown/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/ballgown/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/ballgown/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/ballgown/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/ballgown/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/ballgown/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/ballgown/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/ballgown/deployments"
  .. .. ..$ created_at       : chr "2013-08-28T18:18:50Z"
  .. .. ..$ updated_at       : chr "2014-03-27T15:17:57Z"
  .. .. ..$ pushed_at        : chr "2014-03-27T15:06:21Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/ballgown.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/ballgown.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/ballgown.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/ballgown"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 10421
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "C++"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 20234724
  .. .. ..$ name             : chr "capitalIn21stCenturyinR"
  .. .. ..$ full_name        : chr "jtleek/capitalIn21stCenturyinR"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/capitalIn21stCenturyinR"
  .. .. ..$ description      : chr "Piketty in R"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/capitalIn21stCenturyinR/deployments"
  .. .. ..$ created_at       : chr "2014-05-27T20:38:31Z"
  .. .. ..$ updated_at       : chr "2016-09-06T17:01:54Z"
  .. .. ..$ pushed_at        : chr "2016-07-18T17:22:51Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/capitalIn21stCenturyinR.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/capitalIn21stCenturyinR.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/capitalIn21stCenturyinR.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/capitalIn21stCenturyinR"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 374812
  .. .. ..$ stargazers_count : int 186
  .. .. ..$ watchers_count   : int 186
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 118
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 118
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 186
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 36437287
  .. .. ..$ name             : chr "careerplanning"
  .. .. ..$ full_name        : chr "jtleek/careerplanning"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/careerplanning"
  .. .. ..$ description      : chr "A career planning guide."
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/careerplanning"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/careerplanning/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/careerplanning/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/careerplanning/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/careerplanning/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/careerplanning/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/careerplanning/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/careerplanning/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/careerplanning/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/careerplanning/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/careerplanning/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/careerplanning/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/careerplanning/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/careerplanning/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/careerplanning/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/careerplanning/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/careerplanning/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/careerplanning/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/careerplanning/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/careerplanning/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/careerplanning/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/careerplanning/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/careerplanning/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/careerplanning/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/careerplanning/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/careerplanning/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/careerplanning/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/careerplanning/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/careerplanning/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/careerplanning/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/careerplanning/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/careerplanning/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/careerplanning/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/careerplanning/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/careerplanning/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/careerplanning/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/careerplanning/deployments"
  .. .. ..$ created_at       : chr "2015-05-28T12:37:04Z"
  .. .. ..$ updated_at       : chr "2016-10-18T22:55:22Z"
  .. .. ..$ pushed_at        : chr "2015-05-28T13:51:02Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/careerplanning.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/careerplanning.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/careerplanning.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/careerplanning"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 128
  .. .. ..$ stargazers_count : int 59
  .. .. ..$ watchers_count   : int 59
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 18
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 18
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 59
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 7751816
  .. .. ..$ name             : chr "dataanalysis"
  .. .. ..$ full_name        : chr "jtleek/dataanalysis"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/dataanalysis"
  .. .. ..$ description      : chr "The lecture slides for Coursera's Data Analysis class"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/dataanalysis"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/dataanalysis/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/dataanalysis/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/dataanalysis/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/dataanalysis/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/dataanalysis/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/dataanalysis/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/dataanalysis/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/dataanalysis/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/dataanalysis/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/dataanalysis/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/dataanalysis/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/dataanalysis/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/dataanalysis/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/dataanalysis/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/dataanalysis/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/dataanalysis/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/dataanalysis/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/dataanalysis/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/dataanalysis/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/dataanalysis/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/dataanalysis/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/dataanalysis/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/dataanalysis/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/dataanalysis/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/dataanalysis/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/dataanalysis/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/dataanalysis/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/dataanalysis/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/dataanalysis/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/dataanalysis/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/dataanalysis/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/dataanalysis/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/dataanalysis/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/dataanalysis/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/dataanalysis/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/dataanalysis/deployments"
  .. .. ..$ created_at       : chr "2013-01-22T12:16:41Z"
  .. .. ..$ updated_at       : chr "2016-10-18T22:50:28Z"
  .. .. ..$ pushed_at        : chr "2015-09-22T09:38:52Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/dataanalysis.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/dataanalysis.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/dataanalysis.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/dataanalysis"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 156389
  .. .. ..$ stargazers_count : int 616
  .. .. ..$ watchers_count   : int 616
  .. .. ..$ language         : chr "JavaScript"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 605
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 5
  .. .. ..$ forks            : int 605
  .. .. ..$ open_issues      : int 5
  .. .. ..$ watchers         : int 616
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 4772877
  .. .. ..$ name             : chr "datascientist"
  .. .. ..$ full_name        : chr "jtleek/datascientist"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/datascientist"
  .. .. ..$ description      : chr "datascientist"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/datascientist"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/datascientist/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/datascientist/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/datascientist/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/datascientist/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/datascientist/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/datascientist/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/datascientist/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/datascientist/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/datascientist/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/datascientist/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/datascientist/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/datascientist/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/datascientist/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/datascientist/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/datascientist/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/datascientist/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/datascientist/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/datascientist/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/datascientist/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/datascientist/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/datascientist/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/datascientist/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/datascientist/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/datascientist/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/datascientist/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/datascientist/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/datascientist/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/datascientist/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/datascientist/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/datascientist/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/datascientist/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/datascientist/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/datascientist/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/datascientist/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/datascientist/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/datascientist/deployments"
  .. .. ..$ created_at       : chr "2012-06-24T14:36:20Z"
  .. .. ..$ updated_at       : chr "2016-08-24T08:08:28Z"
  .. .. ..$ pushed_at        : chr "2012-06-24T14:38:18Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/datascientist.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/datascientist.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/datascientist.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/datascientist"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 98
  .. .. ..$ stargazers_count : int 9
  .. .. ..$ watchers_count   : int 9
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 40
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 40
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 9
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 14204342
  .. .. ..$ name             : chr "datasharing"
  .. .. ..$ full_name        : chr "jtleek/datasharing"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/datasharing"
  .. .. ..$ description      : chr "The Leek group guide to data sharing "
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/datasharing"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/datasharing/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/datasharing/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/datasharing/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/datasharing/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/datasharing/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/datasharing/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/datasharing/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/datasharing/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/datasharing/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/datasharing/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/datasharing/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/datasharing/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/datasharing/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/datasharing/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/datasharing/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/datasharing/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/datasharing/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/datasharing/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/datasharing/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/datasharing/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/datasharing/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/datasharing/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/datasharing/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/datasharing/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/datasharing/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/datasharing/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/datasharing/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/datasharing/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/datasharing/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/datasharing/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/datasharing/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/datasharing/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/datasharing/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/datasharing/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/datasharing/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/datasharing/deployments"
  .. .. ..$ created_at       : chr "2013-11-07T13:25:07Z"
  .. .. ..$ updated_at       : chr "2016-10-25T03:09:53Z"
  .. .. ..$ pushed_at        : chr "2016-09-18T09:42:46Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/datasharing.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/datasharing.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/datasharing.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/datasharing"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 547
  .. .. ..$ stargazers_count : int 3558
  .. .. ..$ watchers_count   : int 3558
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 161881
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 399
  .. .. ..$ forks            : int 161881
  .. .. ..$ open_issues      : int 399
  .. .. ..$ watchers         : int 3558
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 23840078
  .. .. ..$ name             : chr "datawomenontwitter"
  .. .. ..$ full_name        : chr "jtleek/datawomenontwitter"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/datawomenontwitter"
  .. .. ..$ description      : chr "A list of women doing great data things on Twitter (started here:http://simplystatistics.org/2014/09/09/a-non-c"| __truncated__
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/datawomenontwitter"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/datawomenontwitter/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/datawomenontwitter/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/datawomenontwitter/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/datawomenontwitter/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/datawomenontwitter/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/datawomenontwitter/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/datawomenontwitter/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/datawomenontwitter/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/datawomenontwitter/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/datawomenontwitter/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/datawomenontwitter/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/datawomenontwitter/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/datawomenontwitter/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/datawomenontwitter/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/datawomenontwitter/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/datawomenontwitter/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/datawomenontwitter/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/datawomenontwitter/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/datawomenontwitter/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/datawomenontwitter/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/datawomenontwitter/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/datawomenontwitter/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/datawomenontwitter/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/datawomenontwitter/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/datawomenontwitter/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/datawomenontwitter/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/datawomenontwitter/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/datawomenontwitter/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/datawomenontwitter/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/datawomenontwitter/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/datawomenontwitter/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/datawomenontwitter/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/datawomenontwitter/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/datawomenontwitter/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/datawomenontwitter/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/datawomenontwitter/deployments"
  .. .. ..$ created_at       : chr "2014-09-09T15:49:57Z"
  .. .. ..$ updated_at       : chr "2016-02-26T11:53:15Z"
  .. .. ..$ pushed_at        : chr "2014-09-09T15:50:55Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/datawomenontwitter.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/datawomenontwitter.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/datawomenontwitter.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/datawomenontwitter"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 112
  .. .. ..$ stargazers_count : int 4
  .. .. ..$ watchers_count   : int 4
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 4
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 4
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 4
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 11549405
  .. .. ..$ name             : chr "derfinder"
  .. .. ..$ full_name        : chr "jtleek/derfinder"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/derfinder"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/derfinder"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/derfinder/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/derfinder/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/derfinder/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/derfinder/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/derfinder/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/derfinder/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/derfinder/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/derfinder/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/derfinder/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/derfinder/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/derfinder/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/derfinder/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/derfinder/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/derfinder/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/derfinder/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/derfinder/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/derfinder/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/derfinder/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/derfinder/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/derfinder/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/derfinder/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/derfinder/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/derfinder/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/derfinder/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/derfinder/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/derfinder/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/derfinder/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/derfinder/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/derfinder/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/derfinder/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/derfinder/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/derfinder/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/derfinder/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/derfinder/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/derfinder/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/derfinder/deployments"
  .. .. ..$ created_at       : chr "2013-07-20T16:05:59Z"
  .. .. ..$ updated_at       : chr "2015-04-14T04:29:50Z"
  .. .. ..$ pushed_at        : chr "2013-06-24T21:17:27Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/derfinder.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/derfinder.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/derfinder.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/derfinder"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 388
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 14240696
  .. .. ..$ name             : chr "derfinder-1"
  .. .. ..$ full_name        : chr "jtleek/derfinder-1"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/derfinder-1"
  .. .. ..$ description      : chr "Fast differential expression analysis of RNA-seq data at base-pair resolution"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/derfinder-1"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/derfinder-1/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/derfinder-1/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/derfinder-1/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/derfinder-1/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/derfinder-1/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/derfinder-1/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/derfinder-1/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/derfinder-1/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/derfinder-1/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/derfinder-1/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/derfinder-1/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/derfinder-1/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/derfinder-1/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/derfinder-1/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/derfinder-1/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/derfinder-1/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/derfinder-1/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/derfinder-1/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/derfinder-1/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/derfinder-1/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/derfinder-1/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/derfinder-1/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/derfinder-1/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/derfinder-1/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/derfinder-1/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/derfinder-1/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/derfinder-1/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/derfinder-1/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/derfinder-1/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/derfinder-1/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/derfinder-1/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/derfinder-1/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/derfinder-1/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/derfinder-1/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/derfinder-1/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/derfinder-1/deployments"
  .. .. ..$ created_at       : chr "2013-11-08T18:16:27Z"
  .. .. ..$ updated_at       : chr "2013-11-08T20:39:32Z"
  .. .. ..$ pushed_at        : chr "2013-11-08T18:19:42Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/derfinder-1.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/derfinder-1.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/derfinder-1.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/derfinder-1"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 367
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 11976743
  .. .. ..$ name             : chr "DSM"
  .. .. ..$ full_name        : chr "jtleek/DSM"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/DSM"
  .. .. ..$ description      : chr "Deterministic Statistical Machine"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/DSM"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/DSM/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/DSM/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/DSM/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/DSM/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/DSM/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/DSM/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/DSM/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/DSM/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/DSM/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/DSM/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/DSM/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/DSM/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/DSM/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/DSM/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/DSM/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/DSM/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/DSM/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/DSM/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/DSM/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/DSM/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/DSM/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/DSM/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/DSM/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/DSM/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/DSM/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/DSM/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/DSM/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/DSM/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/DSM/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/DSM/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/DSM/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/DSM/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/DSM/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/DSM/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/DSM/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/DSM/deployments"
  .. .. ..$ created_at       : chr "2013-08-08T13:20:40Z"
  .. .. ..$ updated_at       : chr "2013-08-08T13:20:42Z"
  .. .. ..$ pushed_at        : chr "2013-08-06T17:36:58Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/DSM.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/DSM.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/DSM.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/DSM"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 50000
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 8730097
  .. .. ..$ name             : chr "EDA-Project"
  .. .. ..$ full_name        : chr "jtleek/EDA-Project"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/EDA-Project"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/EDA-Project"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/EDA-Project/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/EDA-Project/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/EDA-Project/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/EDA-Project/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/EDA-Project/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/EDA-Project/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/EDA-Project/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/EDA-Project/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/EDA-Project/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/EDA-Project/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/EDA-Project/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/EDA-Project/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/EDA-Project/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/EDA-Project/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/EDA-Project/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/EDA-Project/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/EDA-Project/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/EDA-Project/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/EDA-Project/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/EDA-Project/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/EDA-Project/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/EDA-Project/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/EDA-Project/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/EDA-Project/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/EDA-Project/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/EDA-Project/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/EDA-Project/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/EDA-Project/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/EDA-Project/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/EDA-Project/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/EDA-Project/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/EDA-Project/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/EDA-Project/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/EDA-Project/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/EDA-Project/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/EDA-Project/deployments"
  .. .. ..$ created_at       : chr "2013-03-12T14:46:24Z"
  .. .. ..$ updated_at       : chr "2014-06-05T17:59:15Z"
  .. .. ..$ pushed_at        : chr "2013-03-10T23:17:30Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/EDA-Project.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/EDA-Project.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/EDA-Project.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/EDA-Project"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 91008
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "JavaScript"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 42663787
  .. .. ..$ name             : chr "firstpaper"
  .. .. ..$ full_name        : chr "jtleek/firstpaper"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/firstpaper"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/firstpaper"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/firstpaper/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/firstpaper/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/firstpaper/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/firstpaper/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/firstpaper/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/firstpaper/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/firstpaper/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/firstpaper/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/firstpaper/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/firstpaper/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/firstpaper/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/firstpaper/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/firstpaper/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/firstpaper/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/firstpaper/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/firstpaper/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/firstpaper/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/firstpaper/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/firstpaper/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/firstpaper/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/firstpaper/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/firstpaper/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/firstpaper/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/firstpaper/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/firstpaper/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/firstpaper/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/firstpaper/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/firstpaper/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/firstpaper/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/firstpaper/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/firstpaper/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/firstpaper/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/firstpaper/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/firstpaper/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/firstpaper/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/firstpaper/deployments"
  .. .. ..$ created_at       : chr "2015-09-17T15:17:01Z"
  .. .. ..$ updated_at       : chr "2016-10-20T12:23:59Z"
  .. .. ..$ pushed_at        : chr "2016-08-03T17:42:23Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/firstpaper.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/firstpaper.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/firstpaper.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/firstpaper"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 45
  .. .. ..$ stargazers_count : int 133
  .. .. ..$ watchers_count   : int 133
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 37
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 37
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 133
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 14590772
  .. .. ..$ name             : chr "futureofstats"
  .. .. ..$ full_name        : chr "jtleek/futureofstats"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/futureofstats"
  .. .. ..$ description      : chr "Take Homes from the Unconference on the Future of Statistics #futureofstats"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/futureofstats"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/futureofstats/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/futureofstats/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/futureofstats/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/futureofstats/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/futureofstats/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/futureofstats/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/futureofstats/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/futureofstats/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/futureofstats/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/futureofstats/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/futureofstats/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/futureofstats/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/futureofstats/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/futureofstats/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/futureofstats/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/futureofstats/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/futureofstats/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/futureofstats/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/futureofstats/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/futureofstats/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/futureofstats/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/futureofstats/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/futureofstats/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/futureofstats/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/futureofstats/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/futureofstats/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/futureofstats/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/futureofstats/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/futureofstats/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/futureofstats/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/futureofstats/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/futureofstats/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/futureofstats/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/futureofstats/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/futureofstats/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/futureofstats/deployments"
  .. .. ..$ created_at       : chr "2013-11-21T15:07:59Z"
  .. .. ..$ updated_at       : chr "2016-06-18T13:22:36Z"
  .. .. ..$ pushed_at        : chr "2013-11-22T03:06:56Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/futureofstats.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/futureofstats.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/futureofstats.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/futureofstats"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 147
  .. .. ..$ stargazers_count : int 31
  .. .. ..$ watchers_count   : int 31
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 22
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 22
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 31
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 24905212
  .. .. ..$ name             : chr "genomicspapers"
  .. .. ..$ full_name        : chr "jtleek/genomicspapers"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/genomicspapers"
  .. .. ..$ description      : chr "The Leek group guide to genomics papers"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/genomicspapers"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/genomicspapers/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/genomicspapers/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/genomicspapers/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/genomicspapers/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/genomicspapers/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/genomicspapers/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/genomicspapers/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/genomicspapers/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/genomicspapers/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/genomicspapers/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/genomicspapers/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/genomicspapers/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/genomicspapers/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/genomicspapers/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/genomicspapers/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/genomicspapers/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/genomicspapers/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/genomicspapers/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/genomicspapers/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/genomicspapers/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/genomicspapers/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/genomicspapers/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/genomicspapers/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/genomicspapers/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/genomicspapers/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/genomicspapers/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/genomicspapers/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/genomicspapers/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/genomicspapers/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/genomicspapers/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/genomicspapers/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/genomicspapers/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/genomicspapers/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/genomicspapers/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/genomicspapers/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/genomicspapers/deployments"
  .. .. ..$ created_at       : chr "2014-10-07T18:32:10Z"
  .. .. ..$ updated_at       : chr "2016-10-19T08:33:50Z"
  .. .. ..$ pushed_at        : chr "2014-11-17T01:42:23Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/genomicspapers.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/genomicspapers.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/genomicspapers.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/genomicspapers"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 197
  .. .. ..$ stargazers_count : int 211
  .. .. ..$ watchers_count   : int 211
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 93
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 93
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 211
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 39025267
  .. .. ..$ name             : chr "genstats"
  .. .. ..$ full_name        : chr "jtleek/genstats"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/genstats"
  .. .. ..$ description      : chr "Statistics course for JHU Genomic Data Science Sequence"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/genstats"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/genstats/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/genstats/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/genstats/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/genstats/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/genstats/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/genstats/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/genstats/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/genstats/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/genstats/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/genstats/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/genstats/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/genstats/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/genstats/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/genstats/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/genstats/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/genstats/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/genstats/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/genstats/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/genstats/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/genstats/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/genstats/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/genstats/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/genstats/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/genstats/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/genstats/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/genstats/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/genstats/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/genstats/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/genstats/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/genstats/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/genstats/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/genstats/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/genstats/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/genstats/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/genstats/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/genstats/deployments"
  .. .. ..$ created_at       : chr "2015-07-13T16:55:21Z"
  .. .. ..$ updated_at       : chr "2016-09-09T00:46:36Z"
  .. .. ..$ pushed_at        : chr "2015-09-19T13:32:57Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/genstats.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/genstats.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/genstats.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/genstats"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 15870
  .. .. ..$ stargazers_count : int 42
  .. .. ..$ watchers_count   : int 42
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 105
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 3
  .. .. ..$ forks            : int 105
  .. .. ..$ open_issues      : int 3
  .. .. ..$ watchers         : int 42
  .. .. ..$ default_branch   : chr "gh-pages"
  .. ..$ :List of 68
  .. .. ..$ id               : int 41094217
  .. .. ..$ name             : chr "genstats_site"
  .. .. ..$ full_name        : chr "jtleek/genstats_site"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/genstats_site"
  .. .. ..$ description      : chr "Site for Genomic Data Science Class"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/genstats_site"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/genstats_site/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/genstats_site/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/genstats_site/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/genstats_site/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/genstats_site/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/genstats_site/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/genstats_site/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/genstats_site/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/genstats_site/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/genstats_site/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/genstats_site/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/genstats_site/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/genstats_site/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/genstats_site/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/genstats_site/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/genstats_site/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/genstats_site/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/genstats_site/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/genstats_site/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/genstats_site/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/genstats_site/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/genstats_site/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/genstats_site/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/genstats_site/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/genstats_site/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/genstats_site/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/genstats_site/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/genstats_site/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/genstats_site/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/genstats_site/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/genstats_site/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/genstats_site/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/genstats_site/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/genstats_site/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/genstats_site/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/genstats_site/deployments"
  .. .. ..$ created_at       : chr "2015-08-20T12:23:21Z"
  .. .. ..$ updated_at       : chr "2016-09-03T02:38:30Z"
  .. .. ..$ pushed_at        : chr "2015-09-07T13:54:52Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/genstats_site.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/genstats_site.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/genstats_site.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/genstats_site"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 41702
  .. .. ..$ stargazers_count : int 7
  .. .. ..$ watchers_count   : int 7
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 8
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 8
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 7
  .. .. ..$ default_branch   : chr "gh-pages"
  .. ..$ :List of 68
  .. .. ..$ id               : int 12563551
  .. .. ..$ name             : chr "googleCite"
  .. .. ..$ full_name        : chr "jtleek/googleCite"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/googleCite"
  .. .. ..$ description      : chr "googleCite is a function for creating a wordcloud of your google scholar citations page. "
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/googleCite"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/googleCite/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/googleCite/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/googleCite/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/googleCite/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/googleCite/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/googleCite/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/googleCite/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/googleCite/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/googleCite/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/googleCite/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/googleCite/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/googleCite/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/googleCite/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/googleCite/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/googleCite/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/googleCite/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/googleCite/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/googleCite/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/googleCite/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/googleCite/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/googleCite/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/googleCite/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/googleCite/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/googleCite/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/googleCite/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/googleCite/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/googleCite/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/googleCite/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/googleCite/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/googleCite/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/googleCite/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/googleCite/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/googleCite/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/googleCite/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/googleCite/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/googleCite/deployments"
  .. .. ..$ created_at       : chr "2013-09-03T12:48:28Z"
  .. .. ..$ updated_at       : chr "2015-02-01T10:32:49Z"
  .. .. ..$ pushed_at        : chr "2013-09-03T14:10:06Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/googleCite.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/googleCite.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/googleCite.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/googleCite"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 116
  .. .. ..$ stargazers_count : int 2
  .. .. ..$ watchers_count   : int 2
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 6
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 6
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 2
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 6582536
  .. .. ..$ name             : chr "graduate"
  .. .. ..$ full_name        : chr "jtleek/graduate"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/graduate"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/graduate"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/graduate/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/graduate/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/graduate/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/graduate/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/graduate/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/graduate/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/graduate/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/graduate/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/graduate/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/graduate/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/graduate/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/graduate/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/graduate/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/graduate/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/graduate/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/graduate/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/graduate/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/graduate/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/graduate/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/graduate/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/graduate/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/graduate/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/graduate/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/graduate/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/graduate/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/graduate/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/graduate/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/graduate/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/graduate/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/graduate/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/graduate/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/graduate/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/graduate/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/graduate/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/graduate/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/graduate/deployments"
  .. .. ..$ created_at       : chr "2012-11-07T16:43:18Z"
  .. .. ..$ updated_at       : chr "2014-06-05T17:58:39Z"
  .. .. ..$ pushed_at        : chr "2012-11-07T05:43:21Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/graduate.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/graduate.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/graduate.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/graduate"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 1199
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 3
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 3
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 6661008
  .. .. ..$ name             : chr "healthvis"
  .. .. ..$ full_name        : chr "jtleek/healthvis"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/healthvis"
  .. .. ..$ description      : chr "An Interactive Health Visualization Package"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/healthvis"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/healthvis/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/healthvis/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/healthvis/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/healthvis/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/healthvis/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/healthvis/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/healthvis/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/healthvis/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/healthvis/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/healthvis/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/healthvis/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/healthvis/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/healthvis/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/healthvis/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/healthvis/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/healthvis/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/healthvis/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/healthvis/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/healthvis/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/healthvis/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/healthvis/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/healthvis/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/healthvis/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/healthvis/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/healthvis/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/healthvis/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/healthvis/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/healthvis/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/healthvis/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/healthvis/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/healthvis/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/healthvis/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/healthvis/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/healthvis/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/healthvis/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/healthvis/deployments"
  .. .. ..$ created_at       : chr "2012-11-12T21:35:30Z"
  .. .. ..$ updated_at       : chr "2015-09-15T03:54:13Z"
  .. .. ..$ pushed_at        : chr "2013-01-12T19:58:55Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/healthvis.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/healthvis.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/healthvis.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/healthvis"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 1067
  .. .. ..$ stargazers_count : int 9
  .. .. ..$ watchers_count   : int 9
  .. .. ..$ language         : chr "Python"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 6
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 6
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 9
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 19133476
  .. .. ..$ name             : chr "hyde"
  .. .. ..$ full_name        : chr "jtleek/hyde"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/hyde"
  .. .. ..$ description      : chr "A brazen two-column theme for Jekyll."
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/hyde"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/hyde/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/hyde/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/hyde/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/hyde/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/hyde/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/hyde/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/hyde/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/hyde/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/hyde/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/hyde/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/hyde/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/hyde/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/hyde/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/hyde/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/hyde/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/hyde/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/hyde/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/hyde/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/hyde/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/hyde/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/hyde/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/hyde/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/hyde/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/hyde/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/hyde/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/hyde/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/hyde/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/hyde/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/hyde/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/hyde/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/hyde/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/hyde/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/hyde/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/hyde/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/hyde/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/hyde/deployments"
  .. .. ..$ created_at       : chr "2014-04-25T03:59:31Z"
  .. .. ..$ updated_at       : chr "2014-04-25T03:59:31Z"
  .. .. ..$ pushed_at        : chr "2014-03-16T03:23:52Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/hyde.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/hyde.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/hyde.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/hyde"
  .. .. ..$ homepage         : chr "http://hyde.getpoole.com"
  .. .. ..$ size             : int 447
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "CSS"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi FALSE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 16584923
  .. .. ..$ name             : chr "inclassfeb62014"
  .. .. ..$ full_name        : chr "jtleek/inclassfeb62014"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/inclassfeb62014"
  .. .. ..$ description      : chr "In class project repo"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/inclassfeb62014"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/inclassfeb62014/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/inclassfeb62014/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/inclassfeb62014/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/inclassfeb62014/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/inclassfeb62014/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/inclassfeb62014/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/inclassfeb62014/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/inclassfeb62014/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/inclassfeb62014/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/inclassfeb62014/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/inclassfeb62014/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/inclassfeb62014/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/inclassfeb62014/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/inclassfeb62014/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/inclassfeb62014/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/inclassfeb62014/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/inclassfeb62014/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/inclassfeb62014/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/inclassfeb62014/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/inclassfeb62014/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/inclassfeb62014/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/inclassfeb62014/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/inclassfeb62014/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/inclassfeb62014/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/inclassfeb62014/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/inclassfeb62014/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/inclassfeb62014/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/inclassfeb62014/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/inclassfeb62014/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/inclassfeb62014/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/inclassfeb62014/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/inclassfeb62014/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/inclassfeb62014/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/inclassfeb62014/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/inclassfeb62014/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/inclassfeb62014/deployments"
  .. .. ..$ created_at       : chr "2014-02-06T16:13:11Z"
  .. .. ..$ updated_at       : chr "2014-06-05T17:59:46Z"
  .. .. ..$ pushed_at        : chr "2014-02-18T10:34:32Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/inclassfeb62014.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/inclassfeb62014.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/inclassfeb62014.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/inclassfeb62014"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 6248
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "Shell"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 5
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 5
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 7745123
  .. .. ..$ name             : chr "jhsph753"
  .. .. ..$ full_name        : chr "jtleek/jhsph753"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/jhsph753"
  .. .. ..$ description      : chr "Web page for JHSPH Advanced Methods/Applied Statistics"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/jhsph753"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/jhsph753/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/jhsph753/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/jhsph753/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/jhsph753/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/jhsph753/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/jhsph753/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/jhsph753/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/jhsph753/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/jhsph753/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/jhsph753/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/jhsph753/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/jhsph753/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/jhsph753/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/jhsph753/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/jhsph753/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/jhsph753/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/jhsph753/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/jhsph753/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/jhsph753/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/jhsph753/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/jhsph753/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/jhsph753/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/jhsph753/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/jhsph753/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/jhsph753/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/jhsph753/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/jhsph753/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/jhsph753/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/jhsph753/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/jhsph753/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/jhsph753/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/jhsph753/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/jhsph753/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/jhsph753/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/jhsph753/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/jhsph753/deployments"
  .. .. ..$ created_at       : chr "2013-01-22T03:06:39Z"
  .. .. ..$ updated_at       : chr "2013-10-04T11:29:18Z"
  .. .. ..$ pushed_at        : chr "2013-05-16T11:43:34Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/jhsph753.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/jhsph753.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/jhsph753.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/jhsph753"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 27878
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "JavaScript"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 2
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 2
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 15639612
  .. .. ..$ name             : chr "jhsph753and4"
  .. .. ..$ full_name        : chr "jtleek/jhsph753and4"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/jhsph753and4"
  .. .. ..$ description      : chr "Class github repository for 751 and 2; doctoral classes in the Department of Biostatistics at Johns Hopkins"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/jhsph753and4"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/jhsph753and4/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/jhsph753and4/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/jhsph753and4/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/jhsph753and4/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/jhsph753and4/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/jhsph753and4/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/jhsph753and4/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/jhsph753and4/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/jhsph753and4/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/jhsph753and4/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/jhsph753and4/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/jhsph753and4/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/jhsph753and4/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/jhsph753and4/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/jhsph753and4/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/jhsph753and4/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/jhsph753and4/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/jhsph753and4/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/jhsph753and4/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/jhsph753and4/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/jhsph753and4/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/jhsph753and4/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/jhsph753and4/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/jhsph753and4/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/jhsph753and4/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/jhsph753and4/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/jhsph753and4/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/jhsph753and4/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/jhsph753and4/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/jhsph753and4/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/jhsph753and4/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/jhsph753and4/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/jhsph753and4/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/jhsph753and4/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/jhsph753and4/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/jhsph753and4/deployments"
  .. .. ..$ created_at       : chr "2014-01-04T21:06:44Z"
  .. .. ..$ updated_at       : chr "2016-10-23T12:03:14Z"
  .. .. ..$ pushed_at        : chr "2014-05-15T14:22:41Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/jhsph753and4.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/jhsph753and4.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/jhsph753and4.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/jhsph753and4"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 185443
  .. .. ..$ stargazers_count : int 8
  .. .. ..$ watchers_count   : int 8
  .. .. ..$ language         : chr "JavaScript"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 24
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 24
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 8
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 42834789
  .. .. ..$ name             : chr "jhudash"
  .. .. ..$ full_name        : chr "jtleek/jhudash"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/jhudash"
  .. .. ..$ description      : chr "A repository for all things DaSH"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/jhudash"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/jhudash/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/jhudash/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/jhudash/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/jhudash/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/jhudash/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/jhudash/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/jhudash/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/jhudash/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/jhudash/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/jhudash/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/jhudash/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/jhudash/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/jhudash/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/jhudash/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/jhudash/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/jhudash/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/jhudash/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/jhudash/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/jhudash/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/jhudash/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/jhudash/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/jhudash/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/jhudash/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/jhudash/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/jhudash/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/jhudash/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/jhudash/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/jhudash/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/jhudash/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/jhudash/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/jhudash/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/jhudash/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/jhudash/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/jhudash/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/jhudash/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/jhudash/deployments"
  .. .. ..$ created_at       : chr "2015-09-21T00:11:42Z"
  .. .. ..$ updated_at       : chr "2015-09-18T16:45:24Z"
  .. .. ..$ pushed_at        : chr "2015-09-21T10:35:40Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/jhudash.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/jhudash.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/jhudash.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/jhudash"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 381
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 42873969
  .. .. ..$ name             : chr "jhudash-refugee"
  .. .. ..$ full_name        : chr "jtleek/jhudash-refugee"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/jhudash-refugee"
  .. .. ..$ description      : chr "Code to collect data for the #jhudash refugee project"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/jhudash-refugee"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/jhudash-refugee/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/jhudash-refugee/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/jhudash-refugee/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/jhudash-refugee/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/jhudash-refugee/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/jhudash-refugee/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/jhudash-refugee/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/jhudash-refugee/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/jhudash-refugee/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/jhudash-refugee/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/jhudash-refugee/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/jhudash-refugee/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/jhudash-refugee/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/jhudash-refugee/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/jhudash-refugee/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/jhudash-refugee/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/jhudash-refugee/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/jhudash-refugee/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/jhudash-refugee/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/jhudash-refugee/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/jhudash-refugee/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/jhudash-refugee/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/jhudash-refugee/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/jhudash-refugee/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/jhudash-refugee/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/jhudash-refugee/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/jhudash-refugee/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/jhudash-refugee/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/jhudash-refugee/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/jhudash-refugee/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/jhudash-refugee/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/jhudash-refugee/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/jhudash-refugee/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/jhudash-refugee/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/jhudash-refugee/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/jhudash-refugee/deployments"
  .. .. ..$ created_at       : chr "2015-09-21T15:08:47Z"
  .. .. ..$ updated_at       : chr "2016-01-21T21:41:29Z"
  .. .. ..$ pushed_at        : chr "2015-11-09T20:28:11Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/jhudash-refugee.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/jhudash-refugee.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/jhudash-refugee.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/jhudash-refugee"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 23206
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 2
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 2
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 19133794
  .. .. ..$ name             : chr "jtleek.github.io"
  .. .. ..$ full_name        : chr "jtleek/jtleek.github.io"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "jtleek"
  .. .. .. ..$ id                 : int 1571674
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/1571674?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/jtleek"
  .. .. .. ..$ html_url           : chr "https://github.com/jtleek"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/jtleek/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/jtleek/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/jtleek/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/jtleek/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/jtleek/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/jtleek/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/jtleek/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/jtleek/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/jtleek/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/jtleek/jtleek.github.io"
  .. .. ..$ description      : chr "Website"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/jtleek/jtleek.github.io"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/jtleek/jtleek.github.io/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/jtleek/jtleek.github.io/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/jtleek/jtleek.github.io/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/jtleek/jtleek.github.io/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/jtleek/jtleek.github.io/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/jtleek/jtleek.github.io/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/jtleek/jtleek.github.io/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/jtleek/jtleek.github.io/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/jtleek/jtleek.github.io/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/jtleek/jtleek.github.io/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/jtleek/jtleek.github.io/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/jtleek/jtleek.github.io/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/jtleek/jtleek.github.io/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/jtleek/jtleek.github.io/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/jtleek/jtleek.github.io/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/jtleek/jtleek.github.io/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/jtleek/jtleek.github.io/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/jtleek/jtleek.github.io/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/jtleek/jtleek.github.io/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/jtleek/jtleek.github.io/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/jtleek/jtleek.github.io/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/jtleek/jtleek.github.io/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/jtleek/jtleek.github.io/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/jtleek/jtleek.github.io/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/jtleek/jtleek.github.io/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/jtleek/jtleek.github.io/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/jtleek/jtleek.github.io/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/jtleek/jtleek.github.io/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/jtleek/jtleek.github.io/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/jtleek/jtleek.github.io/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/jtleek/jtleek.github.io/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/jtleek/jtleek.github.io/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/jtleek/jtleek.github.io/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/jtleek/jtleek.github.io/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/jtleek/jtleek.github.io/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/jtleek/jtleek.github.io/deployments"
  .. .. ..$ created_at       : chr "2014-04-25T04:14:45Z"
  .. .. ..$ updated_at       : chr "2016-07-30T01:53:44Z"
  .. .. ..$ pushed_at        : chr "2016-10-13T13:26:17Z"
  .. .. ..$ git_url          : chr "git://github.com/jtleek/jtleek.github.io.git"
  .. .. ..$ ssh_url          : chr "git@github.com:jtleek/jtleek.github.io.git"
  .. .. ..$ clone_url        : chr "https://github.com/jtleek/jtleek.github.io.git"
  .. .. ..$ svn_url          : chr "https://github.com/jtleek/jtleek.github.io"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 6045
  .. .. ..$ stargazers_count : int 11
  .. .. ..$ watchers_count   : int 11
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 50
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 50
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 11
  .. .. ..$ default_branch   : chr "master"
  ..$ :List of 26
  .. ..$ :List of 68
  .. .. ..$ id               : int 56019902
  .. .. ..$ name             : chr "2016-14"
  .. .. ..$ full_name        : chr "juliasilge/2016-14"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/2016-14"
  .. .. ..$ description      : chr "Week 14 of 2016"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/2016-14"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/2016-14/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/2016-14/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/2016-14/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/2016-14/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/2016-14/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/2016-14/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/2016-14/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/2016-14/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/2016-14/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/2016-14/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/2016-14/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/2016-14/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/2016-14/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/2016-14/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/2016-14/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/2016-14/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/2016-14/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/2016-14/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/2016-14/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/2016-14/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/2016-14/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/2016-14/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/2016-14/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/2016-14/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/2016-14/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/2016-14/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/2016-14/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/2016-14/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/2016-14/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/2016-14/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/2016-14/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/2016-14/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/2016-14/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/2016-14/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/2016-14/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/2016-14/deployments"
  .. .. ..$ created_at       : chr "2016-04-12T01:13:09Z"
  .. .. ..$ updated_at       : chr "2016-04-12T17:07:48Z"
  .. .. ..$ pushed_at        : chr "2016-04-12T17:07:47Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/2016-14.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/2016-14.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/2016-14.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/2016-14"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 1127
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 50363731
  .. .. ..$ name             : chr "choroplethrCaCensusTract"
  .. .. ..$ full_name        : chr "juliasilge/choroplethrCaCensusTract"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/choroplethrCaCensusTract"
  .. .. ..$ description      : chr "Shapefile, metadata and visualization functions for US Census Tracts in California"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/choroplethrCaCensusTract/deployments"
  .. .. ..$ created_at       : chr "2016-01-25T16:23:00Z"
  .. .. ..$ updated_at       : chr "2016-01-25T16:23:01Z"
  .. .. ..$ pushed_at        : chr "2015-11-28T01:06:13Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/choroplethrCaCensusTract.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/choroplethrCaCensusTract.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/choroplethrCaCensusTract.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/choroplethrCaCensusTract"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 8254
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 50631926
  .. .. ..$ name             : chr "choroplethrUTCensusTract"
  .. .. ..$ full_name        : chr "juliasilge/choroplethrUTCensusTract"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/choroplethrUTCensusTract"
  .. .. ..$ description      : chr "Shapefile, Metadata, and Visualization Functions for US Census Tracts in Utah :sunrise_over_mountains:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/choroplethrUTCensusTract/deployments"
  .. .. ..$ created_at       : chr "2016-01-29T02:40:38Z"
  .. .. ..$ updated_at       : chr "2016-07-29T21:41:43Z"
  .. .. ..$ pushed_at        : chr "2016-02-17T19:47:16Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/choroplethrUTCensusTract.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/choroplethrUTCensusTract.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/choroplethrUTCensusTract.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/choroplethrUTCensusTract"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 972
  .. .. ..$ stargazers_count : int 2
  .. .. ..$ watchers_count   : int 2
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 2
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 47999571
  .. .. ..$ name             : chr "CountyHealthApp"
  .. .. ..$ full_name        : chr "juliasilge/CountyHealthApp"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/CountyHealthApp"
  .. .. ..$ description      : chr "Shiny App exploring health indicators in Utah counties"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/CountyHealthApp"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/CountyHealthApp/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/CountyHealthApp/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/CountyHealthApp/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/CountyHealthApp/deployments"
  .. .. ..$ created_at       : chr "2015-12-14T20:31:27Z"
  .. .. ..$ updated_at       : chr "2015-12-14T20:35:27Z"
  .. .. ..$ pushed_at        : chr "2015-12-15T02:14:37Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/CountyHealthApp.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/CountyHealthApp.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/CountyHealthApp.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/CountyHealthApp"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 4
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 62814408
  .. .. ..$ name             : chr "data-police-shootings"
  .. .. ..$ full_name        : chr "juliasilge/data-police-shootings"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/data-police-shootings"
  .. .. ..$ description      : chr "The Washington Post is compiling a database of every fatal shooting in the United States by a police officer in"| __truncated__
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/data-police-shootings"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/data-police-shootings/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/data-police-shootings/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/data-police-shootings/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/data-police-shootings/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/data-police-shootings/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/data-police-shootings/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/data-police-shootings/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/data-police-shootings/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/data-police-shootings/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/data-police-shootings/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/data-police-shootings/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/data-police-shootings/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/data-police-shootings/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/data-police-shootings/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/data-police-shootings/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/data-police-shootings/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/data-police-shootings/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/data-police-shootings/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/data-police-shootings/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/data-police-shootings/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/data-police-shootings/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/data-police-shootings/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/data-police-shootings/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/data-police-shootings/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/data-police-shootings/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/data-police-shootings/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/data-police-shootings/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/data-police-shootings/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/data-police-shootings/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/data-police-shootings/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/data-police-shootings/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/data-police-shootings/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/data-police-shootings/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/data-police-shootings/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/data-police-shootings/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/data-police-shootings/deployments"
  .. .. ..$ created_at       : chr "2016-07-07T14:44:23Z"
  .. .. ..$ updated_at       : chr "2016-07-07T14:31:54Z"
  .. .. ..$ pushed_at        : chr "2016-07-07T14:06:39Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/data-police-shootings.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/data-police-shootings.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/data-police-shootings.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/data-police-shootings"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 672
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 40152050
  .. .. ..$ name             : chr "ExData_Plotting1"
  .. .. ..$ full_name        : chr "juliasilge/ExData_Plotting1"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/ExData_Plotting1"
  .. .. ..$ description      : chr "Plotting Assignment 1 for Exploratory Data Analysis"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/ExData_Plotting1/deployments"
  .. .. ..$ created_at       : chr "2015-08-03T23:01:46Z"
  .. .. ..$ updated_at       : chr "2015-08-04T22:10:56Z"
  .. .. ..$ pushed_at        : chr "2015-08-04T22:10:55Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/ExData_Plotting1.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/ExData_Plotting1.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/ExData_Plotting1.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/ExData_Plotting1"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 332
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 66172034
  .. .. ..$ name             : chr "fall2016competition"
  .. .. ..$ full_name        : chr "juliasilge/fall2016competition"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/fall2016competition"
  .. .. ..$ description      : chr "Materials for Utah Geek Events Fall 2016 College Scorecard Competition"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/fall2016competition"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/fall2016competition/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/fall2016competition/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/fall2016competition/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/fall2016competition/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/fall2016competition/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/fall2016competition/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/fall2016competition/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/fall2016competition/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/fall2016competition/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/fall2016competition/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/fall2016competition/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/fall2016competition/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/fall2016competition/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/fall2016competition/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/fall2016competition/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/fall2016competition/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/fall2016competition/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/fall2016competition/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/fall2016competition/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/fall2016competition/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/fall2016competition/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/fall2016competition/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/fall2016competition/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/fall2016competition/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/fall2016competition/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/fall2016competition/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/fall2016competition/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/fall2016competition/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/fall2016competition/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/fall2016competition/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/fall2016competition/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/fall2016competition/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/fall2016competition/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/fall2016competition/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/fall2016competition/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/fall2016competition/deployments"
  .. .. ..$ created_at       : chr "2016-08-20T23:11:26Z"
  .. .. ..$ updated_at       : chr "2016-10-22T20:23:48Z"
  .. .. ..$ pushed_at        : chr "2016-10-22T20:23:47Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/fall2016competition.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/fall2016competition.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/fall2016competition.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/fall2016competition"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 24070
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "Jupyter Notebook"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 69769188
  .. .. ..$ name             : chr "ggthemes"
  .. .. ..$ full_name        : chr "juliasilge/ggthemes"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/ggthemes"
  .. .. ..$ description      : chr "ggplot themes and scales"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/ggthemes"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/ggthemes/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/ggthemes/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/ggthemes/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/ggthemes/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/ggthemes/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/ggthemes/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/ggthemes/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/ggthemes/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/ggthemes/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/ggthemes/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/ggthemes/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/ggthemes/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/ggthemes/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/ggthemes/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/ggthemes/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/ggthemes/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/ggthemes/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/ggthemes/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/ggthemes/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/ggthemes/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/ggthemes/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/ggthemes/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/ggthemes/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/ggthemes/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/ggthemes/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/ggthemes/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/ggthemes/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/ggthemes/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/ggthemes/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/ggthemes/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/ggthemes/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/ggthemes/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/ggthemes/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/ggthemes/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/ggthemes/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/ggthemes/deployments"
  .. .. ..$ created_at       : chr "2016-10-01T23:27:52Z"
  .. .. ..$ updated_at       : chr "2016-10-01T23:27:53Z"
  .. .. ..$ pushed_at        : chr "2016-10-01T23:28:44Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/ggthemes.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/ggthemes.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/ggthemes.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/ggthemes"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 6878
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 39162163
  .. .. ..$ name             : chr "human_activity_smartphones"
  .. .. ..$ full_name        : chr "juliasilge/human_activity_smartphones"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/human_activity_smartphones"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/human_activity_smartphones/deployments"
  .. .. ..$ created_at       : chr "2015-07-15T21:27:39Z"
  .. .. ..$ updated_at       : chr "2015-07-16T20:12:16Z"
  .. .. ..$ pushed_at        : chr "2015-07-23T21:58:11Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/human_activity_smartphones.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/human_activity_smartphones.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/human_activity_smartphones.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/human_activity_smartphones"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 156
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 53640070
  .. .. ..$ name             : chr "janeaustenr"
  .. .. ..$ full_name        : chr "juliasilge/janeaustenr"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/janeaustenr"
  .. .. ..$ description      : chr "An R Package for Jane Austen's Complete Novels :orange_book:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/janeaustenr"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/janeaustenr/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/janeaustenr/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/janeaustenr/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/janeaustenr/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/janeaustenr/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/janeaustenr/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/janeaustenr/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/janeaustenr/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/janeaustenr/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/janeaustenr/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/janeaustenr/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/janeaustenr/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/janeaustenr/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/janeaustenr/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/janeaustenr/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/janeaustenr/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/janeaustenr/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/janeaustenr/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/janeaustenr/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/janeaustenr/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/janeaustenr/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/janeaustenr/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/janeaustenr/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/janeaustenr/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/janeaustenr/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/janeaustenr/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/janeaustenr/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/janeaustenr/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/janeaustenr/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/janeaustenr/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/janeaustenr/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/janeaustenr/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/janeaustenr/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/janeaustenr/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/janeaustenr/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/janeaustenr/deployments"
  .. .. ..$ created_at       : chr "2016-03-11T04:41:58Z"
  .. .. ..$ updated_at       : chr "2016-10-23T02:07:31Z"
  .. .. ..$ pushed_at        : chr "2016-10-23T21:40:52Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/janeaustenr.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/janeaustenr.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/janeaustenr.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/janeaustenr"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 3485
  .. .. ..$ stargazers_count : int 33
  .. .. ..$ watchers_count   : int 33
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 5
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 5
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 33
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 67646487
  .. .. ..$ name             : chr "juliasilge.github.io"
  .. .. ..$ full_name        : chr "juliasilge/juliasilge.github.io"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/juliasilge.github.io"
  .. .. ..$ description      : chr "My bloggy blog, based on the So Simple theme :link:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/juliasilge.github.io/deployments"
  .. .. ..$ created_at       : chr "2016-09-07T21:56:01Z"
  .. .. ..$ updated_at       : chr "2016-09-07T21:59:52Z"
  .. .. ..$ pushed_at        : chr "2016-10-08T15:01:34Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/juliasilge.github.io.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/juliasilge.github.io.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/juliasilge.github.io.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/juliasilge.github.io"
  .. .. ..$ homepage         : chr "http://juliasilge.com/"
  .. .. ..$ size             : int 19953
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "JavaScript"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 65046138
  .. .. ..$ name             : chr "leaflet"
  .. .. ..$ full_name        : chr "juliasilge/leaflet"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/leaflet"
  .. .. ..$ description      : chr "R Interface to Leaflet Maps"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/leaflet"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/leaflet/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/leaflet/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/leaflet/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/leaflet/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/leaflet/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/leaflet/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/leaflet/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/leaflet/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/leaflet/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/leaflet/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/leaflet/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/leaflet/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/leaflet/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/leaflet/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/leaflet/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/leaflet/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/leaflet/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/leaflet/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/leaflet/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/leaflet/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/leaflet/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/leaflet/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/leaflet/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/leaflet/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/leaflet/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/leaflet/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/leaflet/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/leaflet/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/leaflet/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/leaflet/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/leaflet/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/leaflet/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/leaflet/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/leaflet/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/leaflet/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/leaflet/deployments"
  .. .. ..$ created_at       : chr "2016-08-05T20:10:12Z"
  .. .. ..$ updated_at       : chr "2016-08-05T20:10:13Z"
  .. .. ..$ pushed_at        : chr "2016-07-19T22:53:33Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/leaflet.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/leaflet.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/leaflet.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/leaflet"
  .. .. ..$ homepage         : chr "http://rstudio.github.io/leaflet"
  .. .. ..$ size             : int 11337
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "JavaScript"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 35901139
  .. .. ..$ name             : chr "learning-python"
  .. .. ..$ full_name        : chr "juliasilge/learning-python"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/learning-python"
  .. .. ..$ description      : chr "My first repository on Github, as I get back into programming and learn Python"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/learning-python"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/learning-python/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/learning-python/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/learning-python/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/learning-python/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/learning-python/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/learning-python/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/learning-python/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/learning-python/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/learning-python/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/learning-python/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/learning-python/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/learning-python/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/learning-python/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/learning-python/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/learning-python/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/learning-python/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/learning-python/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/learning-python/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/learning-python/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/learning-python/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/learning-python/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/learning-python/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/learning-python/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/learning-python/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/learning-python/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/learning-python/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/learning-python/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/learning-python/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/learning-python/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/learning-python/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/learning-python/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/learning-python/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/learning-python/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/learning-python/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/learning-python/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/learning-python/deployments"
  .. .. ..$ created_at       : chr "2015-05-19T18:38:11Z"
  .. .. ..$ updated_at       : chr "2015-07-23T03:37:31Z"
  .. .. ..$ pushed_at        : chr "2015-07-23T03:46:16Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/learning-python.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/learning-python.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/learning-python.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/learning-python"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 152
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "Python"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 38581338
  .. .. ..$ name             : chr "learning-sql"
  .. .. ..$ full_name        : chr "juliasilge/learning-sql"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/learning-sql"
  .. .. ..$ description      : chr "A repository to use as I learn about relational algebra, databases, and SQL"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/learning-sql"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/learning-sql/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/learning-sql/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/learning-sql/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/learning-sql/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/learning-sql/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/learning-sql/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/learning-sql/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/learning-sql/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/learning-sql/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/learning-sql/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/learning-sql/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/learning-sql/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/learning-sql/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/learning-sql/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/learning-sql/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/learning-sql/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/learning-sql/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/learning-sql/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/learning-sql/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/learning-sql/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/learning-sql/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/learning-sql/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/learning-sql/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/learning-sql/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/learning-sql/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/learning-sql/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/learning-sql/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/learning-sql/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/learning-sql/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/learning-sql/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/learning-sql/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/learning-sql/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/learning-sql/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/learning-sql/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/learning-sql/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/learning-sql/deployments"
  .. .. ..$ created_at       : chr "2015-07-05T19:36:22Z"
  .. .. ..$ updated_at       : chr "2015-07-05T19:36:22Z"
  .. .. ..$ pushed_at        : chr "2015-07-05T20:19:32Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/learning-sql.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/learning-sql.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/learning-sql.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/learning-sql"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 136
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 38903037
  .. .. ..$ name             : chr "minimal-mistakes"
  .. .. ..$ full_name        : chr "juliasilge/minimal-mistakes"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/minimal-mistakes"
  .. .. ..$ description      : chr "Repository for my blog, based on the Minimal Mistakes Jekyll theme"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/minimal-mistakes"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/minimal-mistakes/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/minimal-mistakes/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/minimal-mistakes/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/minimal-mistakes/deployments"
  .. .. ..$ created_at       : chr "2015-07-10T21:33:14Z"
  .. .. ..$ updated_at       : chr "2015-09-11T19:39:54Z"
  .. .. ..$ pushed_at        : chr "2015-09-11T21:51:30Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/minimal-mistakes.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/minimal-mistakes.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/minimal-mistakes.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/minimal-mistakes"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 11066
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "JavaScript"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 64496016
  .. .. ..$ name             : chr "nasanotebooks"
  .. .. ..$ full_name        : chr "juliasilge/nasanotebooks"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/nasanotebooks"
  .. .. ..$ description      : chr "Notebooks and other materials for NASA Datanauts projects :milky_way::sunny::rocket:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/nasanotebooks"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/nasanotebooks/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/nasanotebooks/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/nasanotebooks/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/nasanotebooks/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/nasanotebooks/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/nasanotebooks/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/nasanotebooks/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/nasanotebooks/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/nasanotebooks/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/nasanotebooks/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/nasanotebooks/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/nasanotebooks/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/nasanotebooks/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/nasanotebooks/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/nasanotebooks/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/nasanotebooks/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/nasanotebooks/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/nasanotebooks/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/nasanotebooks/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/nasanotebooks/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/nasanotebooks/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/nasanotebooks/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/nasanotebooks/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/nasanotebooks/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/nasanotebooks/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/nasanotebooks/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/nasanotebooks/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/nasanotebooks/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/nasanotebooks/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/nasanotebooks/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/nasanotebooks/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/nasanotebooks/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/nasanotebooks/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/nasanotebooks/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/nasanotebooks/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/nasanotebooks/deployments"
  .. .. ..$ created_at       : chr "2016-07-29T16:46:43Z"
  .. .. ..$ updated_at       : chr "2016-09-23T04:57:53Z"
  .. .. ..$ pushed_at        : chr "2016-10-22T00:30:01Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/nasanotebooks.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/nasanotebooks.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/nasanotebooks.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/nasanotebooks"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 2072
  .. .. ..$ stargazers_count : int 4
  .. .. ..$ watchers_count   : int 4
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 4
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 63895668
  .. .. ..$ name             : chr "neissapp"
  .. .. ..$ full_name        : chr "juliasilge/neissapp"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/neissapp"
  .. .. ..$ description      : chr "Shiny app for the NEISS data set"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/neissapp"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/neissapp/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/neissapp/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/neissapp/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/neissapp/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/neissapp/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/neissapp/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/neissapp/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/neissapp/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/neissapp/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/neissapp/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/neissapp/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/neissapp/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/neissapp/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/neissapp/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/neissapp/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/neissapp/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/neissapp/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/neissapp/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/neissapp/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/neissapp/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/neissapp/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/neissapp/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/neissapp/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/neissapp/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/neissapp/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/neissapp/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/neissapp/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/neissapp/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/neissapp/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/neissapp/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/neissapp/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/neissapp/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/neissapp/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/neissapp/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/neissapp/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/neissapp/deployments"
  .. .. ..$ created_at       : chr "2016-07-21T19:09:57Z"
  .. .. ..$ updated_at       : chr "2016-10-11T20:31:17Z"
  .. .. ..$ pushed_at        : chr "2016-07-21T22:41:32Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/neissapp.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/neissapp.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/neissapp.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/neissapp"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 2
  .. .. ..$ stargazers_count : int 2
  .. .. ..$ watchers_count   : int 2
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 2
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 66101287
  .. .. ..$ name             : chr "populationapp"
  .. .. ..$ full_name        : chr "juliasilge/populationapp"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/populationapp"
  .. .. ..$ description      : chr "Shiny app exploring U.S. population density"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/populationapp"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/populationapp/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/populationapp/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/populationapp/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/populationapp/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/populationapp/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/populationapp/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/populationapp/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/populationapp/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/populationapp/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/populationapp/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/populationapp/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/populationapp/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/populationapp/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/populationapp/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/populationapp/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/populationapp/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/populationapp/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/populationapp/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/populationapp/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/populationapp/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/populationapp/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/populationapp/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/populationapp/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/populationapp/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/populationapp/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/populationapp/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/populationapp/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/populationapp/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/populationapp/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/populationapp/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/populationapp/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/populationapp/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/populationapp/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/populationapp/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/populationapp/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/populationapp/deployments"
  .. .. ..$ created_at       : chr "2016-08-19T17:47:09Z"
  .. .. ..$ updated_at       : chr "2016-08-19T22:53:44Z"
  .. .. ..$ pushed_at        : chr "2016-08-19T17:53:51Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/populationapp.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/populationapp.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/populationapp.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/populationapp"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 20
  .. .. ..$ stargazers_count : int 2
  .. .. ..$ watchers_count   : int 2
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 2
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 52480279
  .. .. ..$ name             : chr "PredictNamesApp"
  .. .. ..$ full_name        : chr "juliasilge/PredictNamesApp"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/PredictNamesApp"
  .. .. ..$ description      : chr "A Shiny App for exploring baby name popularity"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/PredictNamesApp"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/PredictNamesApp/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/PredictNamesApp/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/PredictNamesApp/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/PredictNamesApp/deployments"
  .. .. ..$ created_at       : chr "2016-02-24T22:50:43Z"
  .. .. ..$ updated_at       : chr "2016-02-24T22:57:53Z"
  .. .. ..$ pushed_at        : chr "2016-02-29T19:54:38Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/PredictNamesApp.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/PredictNamesApp.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/PredictNamesApp.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/PredictNamesApp"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 7
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 37276004
  .. .. ..$ name             : chr "ProgrammingAssignment2"
  .. .. ..$ full_name        : chr "juliasilge/ProgrammingAssignment2"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/ProgrammingAssignment2"
  .. .. ..$ description      : chr "Repository for Programming Assignment 2 for R Programming on Coursera"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/ProgrammingAssignment2/deployments"
  .. .. ..$ created_at       : chr "2015-06-11T17:37:49Z"
  .. .. ..$ updated_at       : chr "2015-06-11T17:37:53Z"
  .. .. ..$ pushed_at        : chr "2015-07-23T03:54:16Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/ProgrammingAssignment2.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/ProgrammingAssignment2.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/ProgrammingAssignment2.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/ProgrammingAssignment2"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 103
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 64248946
  .. .. ..$ name             : chr "r-travis"
  .. .. ..$ full_name        : chr "juliasilge/r-travis"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/r-travis"
  .. .. ..$ description      : chr "Tools for using R with Travis (http://travis-ci.org)"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/r-travis"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/r-travis/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/r-travis/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/r-travis/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/r-travis/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/r-travis/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/r-travis/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/r-travis/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/r-travis/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/r-travis/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/r-travis/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/r-travis/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/r-travis/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/r-travis/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/r-travis/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/r-travis/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/r-travis/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/r-travis/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/r-travis/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/r-travis/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/r-travis/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/r-travis/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/r-travis/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/r-travis/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/r-travis/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/r-travis/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/r-travis/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/r-travis/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/r-travis/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/r-travis/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/r-travis/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/r-travis/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/r-travis/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/r-travis/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/r-travis/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/r-travis/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/r-travis/deployments"
  .. .. ..$ created_at       : chr "2016-07-26T19:35:26Z"
  .. .. ..$ updated_at       : chr "2016-07-26T19:35:27Z"
  .. .. ..$ pushed_at        : chr "2016-07-26T21:45:12Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/r-travis.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/r-travis.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/r-travis.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/r-travis"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 260
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "Shell"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 42529303
  .. .. ..$ name             : chr "RepData_PeerAssessment1"
  .. .. ..$ full_name        : chr "juliasilge/RepData_PeerAssessment1"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/RepData_PeerAssessment1"
  .. .. ..$ description      : chr "Peer Assessment 1 for Reproducible Research"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/RepData_PeerAssessment1/deployments"
  .. .. ..$ created_at       : chr "2015-09-15T15:45:32Z"
  .. .. ..$ updated_at       : chr "2015-09-17T20:32:02Z"
  .. .. ..$ pushed_at        : chr "2015-09-17T20:36:57Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/RepData_PeerAssessment1.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/RepData_PeerAssessment1.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/RepData_PeerAssessment1.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/RepData_PeerAssessment1"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 962
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 50752693
  .. .. ..$ name             : chr "SLCWaterMapping"
  .. .. ..$ full_name        : chr "juliasilge/SLCWaterMapping"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/SLCWaterMapping"
  .. .. ..$ description      : chr "Code and a Shiny app exploring water use in Salt Lake City"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/SLCWaterMapping/deployments"
  .. .. ..$ created_at       : chr "2016-01-31T00:55:54Z"
  .. .. ..$ updated_at       : chr "2016-01-31T00:58:36Z"
  .. .. ..$ pushed_at        : chr "2016-02-11T20:59:11Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/SLCWaterMapping.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/SLCWaterMapping.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/SLCWaterMapping.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/SLCWaterMapping"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 5
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 55175084
  .. .. ..$ name             : chr "tidytext"
  .. .. ..$ full_name        : chr "juliasilge/tidytext"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/tidytext"
  .. .. ..$ description      : chr "Text mining using dplyr, ggplot2, and other tidy tools :sparkles::page_facing_up::sparkles::page_facing_up::sparkles:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/tidytext"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/tidytext/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/tidytext/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/tidytext/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/tidytext/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/tidytext/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/tidytext/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/tidytext/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/tidytext/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/tidytext/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/tidytext/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/tidytext/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/tidytext/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/tidytext/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/tidytext/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/tidytext/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/tidytext/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/tidytext/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/tidytext/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/tidytext/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/tidytext/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/tidytext/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/tidytext/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/tidytext/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/tidytext/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/tidytext/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/tidytext/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/tidytext/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/tidytext/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/tidytext/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/tidytext/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/tidytext/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/tidytext/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/tidytext/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/tidytext/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/tidytext/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/tidytext/deployments"
  .. .. ..$ created_at       : chr "2016-03-31T18:51:39Z"
  .. .. ..$ updated_at       : chr "2016-10-25T01:02:37Z"
  .. .. ..$ pushed_at        : chr "2016-10-24T18:26:35Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/tidytext.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/tidytext.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/tidytext.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/tidytext"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 12355
  .. .. ..$ stargazers_count : int 265
  .. .. ..$ watchers_count   : int 265
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 33
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 5
  .. .. ..$ forks            : int 33
  .. .. ..$ open_issues      : int 5
  .. .. ..$ watchers         : int 265
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 54402509
  .. .. ..$ name             : chr "unconf16"
  .. .. ..$ full_name        : chr "juliasilge/unconf16"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/unconf16"
  .. .. ..$ description      : chr "rOpenSci's San Francisco hackathon/unconf 2016"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/unconf16"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/unconf16/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/unconf16/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/unconf16/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/unconf16/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/unconf16/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/unconf16/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/unconf16/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/unconf16/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/unconf16/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/unconf16/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/unconf16/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/unconf16/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/unconf16/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/unconf16/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/unconf16/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/unconf16/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/unconf16/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/unconf16/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/unconf16/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/unconf16/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/unconf16/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/unconf16/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/unconf16/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/unconf16/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/unconf16/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/unconf16/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/unconf16/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/unconf16/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/unconf16/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/unconf16/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/unconf16/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/unconf16/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/unconf16/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/unconf16/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/unconf16/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/unconf16/deployments"
  .. .. ..$ created_at       : chr "2016-03-21T15:53:42Z"
  .. .. ..$ updated_at       : chr "2016-03-21T15:53:44Z"
  .. .. ..$ pushed_at        : chr "2016-03-21T15:56:15Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/unconf16.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/unconf16.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/unconf16.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/unconf16"
  .. .. ..$ homepage         : chr "http://unconf16.ropensci.org"
  .. .. ..$ size             : int 12953
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "JavaScript"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "gh-pages"
  .. ..$ :List of 68
  .. .. ..$ id               : int 46437841
  .. .. ..$ name             : chr "WeightLiftingMachineLearning"
  .. .. ..$ full_name        : chr "juliasilge/WeightLiftingMachineLearning"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "juliasilge"
  .. .. .. ..$ id                 : int 12505835
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/12505835?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/juliasilge"
  .. .. .. ..$ html_url           : chr "https://github.com/juliasilge"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/juliasilge/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/juliasilge/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/juliasilge/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/juliasilge/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/juliasilge/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/juliasilge/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/juliasilge/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/juliasilge/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/juliasilge/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/juliasilge/WeightLiftingMachineLearning"
  .. .. ..$ description      : chr "A small machine learning project for a Coursera class"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/juliasilge/WeightLiftingMachineLearning/deployments"
  .. .. ..$ created_at       : chr "2015-11-18T18:11:09Z"
  .. .. ..$ updated_at       : chr "2015-11-18T18:26:45Z"
  .. .. ..$ pushed_at        : chr "2015-11-18T18:29:10Z"
  .. .. ..$ git_url          : chr "git://github.com/juliasilge/WeightLiftingMachineLearning.git"
  .. .. ..$ ssh_url          : chr "git@github.com:juliasilge/WeightLiftingMachineLearning.git"
  .. .. ..$ clone_url        : chr "https://github.com/juliasilge/WeightLiftingMachineLearning.git"
  .. .. ..$ svn_url          : chr "https://github.com/juliasilge/WeightLiftingMachineLearning"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 508
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  ..$ :List of 30
  .. ..$ :List of 68
  .. .. ..$ id               : int 17120350
  .. .. ..$ name             : chr "ampolcourse"
  .. .. ..$ full_name        : chr "leeper/ampolcourse"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/ampolcourse"
  .. .. ..$ description      : chr "Course materials for \"Issues in American Government and Politics\""
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/ampolcourse"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/ampolcourse/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/ampolcourse/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/ampolcourse/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/ampolcourse/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/ampolcourse/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/ampolcourse/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/ampolcourse/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/ampolcourse/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/ampolcourse/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/ampolcourse/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/ampolcourse/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/ampolcourse/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/ampolcourse/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/ampolcourse/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/ampolcourse/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/ampolcourse/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/ampolcourse/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/ampolcourse/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/ampolcourse/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/ampolcourse/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/ampolcourse/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/ampolcourse/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/ampolcourse/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/ampolcourse/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/ampolcourse/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/ampolcourse/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/ampolcourse/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/ampolcourse/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/ampolcourse/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/ampolcourse/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/ampolcourse/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/ampolcourse/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/ampolcourse/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/ampolcourse/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/ampolcourse/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/ampolcourse/deployments"
  .. .. ..$ created_at       : chr "2014-02-24T00:05:09Z"
  .. .. ..$ updated_at       : chr "2016-04-15T14:14:43Z"
  .. .. ..$ pushed_at        : chr "2016-08-18T23:06:28Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/ampolcourse.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/ampolcourse.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/ampolcourse.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/ampolcourse"
  .. .. ..$ homepage         : chr "http://www.thomasleeper.com/ampolcourse"
  .. .. ..$ size             : int 8052
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "TeX"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "gh-pages"
  .. ..$ :List of 68
  .. .. ..$ id               : int 32517704
  .. .. ..$ name             : chr "apsa-leeper.bst"
  .. .. ..$ full_name        : chr "leeper/apsa-leeper.bst"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/apsa-leeper.bst"
  .. .. ..$ description      : chr "BibTeX style file for political science (adapted from apsa.bst)"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/apsa-leeper.bst"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/apsa-leeper.bst/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/apsa-leeper.bst/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/apsa-leeper.bst/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/apsa-leeper.bst/deployments"
  .. .. ..$ created_at       : chr "2015-03-19T11:35:10Z"
  .. .. ..$ updated_at       : chr "2016-09-06T13:12:10Z"
  .. .. ..$ pushed_at        : chr "2015-03-19T11:36:24Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/apsa-leeper.bst.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/apsa-leeper.bst.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/apsa-leeper.bst.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/apsa-leeper.bst"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 108
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 37484170
  .. .. ..$ name             : chr "arco"
  .. .. ..$ full_name        : chr "leeper/arco"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/arco"
  .. .. ..$ description      : chr "Select colors from the Tcl/tk `chooseColors` widget"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/arco"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/arco/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/arco/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/arco/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/arco/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/arco/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/arco/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/arco/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/arco/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/arco/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/arco/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/arco/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/arco/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/arco/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/arco/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/arco/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/arco/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/arco/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/arco/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/arco/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/arco/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/arco/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/arco/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/arco/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/arco/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/arco/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/arco/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/arco/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/arco/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/arco/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/arco/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/arco/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/arco/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/arco/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/arco/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/arco/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/arco/deployments"
  .. .. ..$ created_at       : chr "2015-06-15T18:43:08Z"
  .. .. ..$ updated_at       : chr "2015-08-08T17:44:18Z"
  .. .. ..$ pushed_at        : chr "2015-06-17T12:26:38Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/arco.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/arco.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/arco.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/arco"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 132
  .. .. ..$ stargazers_count : int 5
  .. .. ..$ watchers_count   : int 5
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 5
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 58914380
  .. .. ..$ name             : chr "astrojs"
  .. .. ..$ full_name        : chr "leeper/astrojs"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/astrojs"
  .. .. ..$ description      : chr "Code from: http://www.math.harvard.edu/computing/javascript/Calendar/"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/astrojs"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/astrojs/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/astrojs/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/astrojs/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/astrojs/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/astrojs/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/astrojs/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/astrojs/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/astrojs/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/astrojs/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/astrojs/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/astrojs/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/astrojs/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/astrojs/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/astrojs/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/astrojs/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/astrojs/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/astrojs/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/astrojs/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/astrojs/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/astrojs/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/astrojs/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/astrojs/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/astrojs/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/astrojs/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/astrojs/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/astrojs/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/astrojs/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/astrojs/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/astrojs/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/astrojs/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/astrojs/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/astrojs/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/astrojs/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/astrojs/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/astrojs/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/astrojs/deployments"
  .. .. ..$ created_at       : chr "2016-05-16T08:00:45Z"
  .. .. ..$ updated_at       : chr "2016-05-16T08:01:18Z"
  .. .. ..$ pushed_at        : chr "2016-05-16T08:01:17Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/astrojs.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/astrojs.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/astrojs.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/astrojs"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 32
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 44051488
  .. .. ..$ name             : chr "batman"
  .. .. ..$ full_name        : chr "leeper/batman"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/batman"
  .. .. ..$ description      : chr "Convert categorical representations of logicals to actual logicals"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/batman"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/batman/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/batman/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/batman/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/batman/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/batman/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/batman/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/batman/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/batman/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/batman/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/batman/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/batman/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/batman/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/batman/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/batman/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/batman/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/batman/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/batman/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/batman/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/batman/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/batman/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/batman/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/batman/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/batman/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/batman/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/batman/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/batman/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/batman/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/batman/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/batman/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/batman/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/batman/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/batman/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/batman/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/batman/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/batman/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/batman/deployments"
  .. .. ..$ created_at       : chr "2015-10-11T12:37:25Z"
  .. .. ..$ updated_at       : chr "2015-10-11T12:37:26Z"
  .. .. ..$ pushed_at        : chr "2015-10-11T11:21:59Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/batman.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/batman.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/batman.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/batman"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 70
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 50262277
  .. .. ..$ name             : chr "choco-r-devel"
  .. .. ..$ full_name        : chr "leeper/choco-r-devel"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/choco-r-devel"
  .. .. ..$ description      : chr "Chocolatey package for r-devel"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/choco-r-devel"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/choco-r-devel/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/choco-r-devel/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/choco-r-devel/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/choco-r-devel/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/choco-r-devel/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/choco-r-devel/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/choco-r-devel/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/choco-r-devel/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/choco-r-devel/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/choco-r-devel/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/choco-r-devel/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/choco-r-devel/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/choco-r-devel/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/choco-r-devel/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/choco-r-devel/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/choco-r-devel/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/choco-r-devel/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/choco-r-devel/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/choco-r-devel/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/choco-r-devel/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/choco-r-devel/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/choco-r-devel/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/choco-r-devel/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/choco-r-devel/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/choco-r-devel/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/choco-r-devel/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/choco-r-devel/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/choco-r-devel/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/choco-r-devel/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/choco-r-devel/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/choco-r-devel/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/choco-r-devel/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/choco-r-devel/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/choco-r-devel/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/choco-r-devel/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/choco-r-devel/deployments"
  .. .. ..$ created_at       : chr "2016-01-23T22:46:50Z"
  .. .. ..$ updated_at       : chr "2016-02-03T11:34:15Z"
  .. .. ..$ pushed_at        : chr "2016-07-26T15:27:06Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/choco-r-devel.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/choco-r-devel.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/choco-r-devel.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/choco-r-devel"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 77
  .. .. ..$ stargazers_count : int 2
  .. .. ..$ watchers_count   : int 2
  .. .. ..$ language         : chr "Makefile"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 2
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 50262595
  .. .. ..$ name             : chr "choco-rtools"
  .. .. ..$ full_name        : chr "leeper/choco-rtools"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/choco-rtools"
  .. .. ..$ description      : chr "Chocolatey package for Rtools"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/choco-rtools"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/choco-rtools/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/choco-rtools/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/choco-rtools/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/choco-rtools/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/choco-rtools/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/choco-rtools/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/choco-rtools/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/choco-rtools/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/choco-rtools/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/choco-rtools/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/choco-rtools/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/choco-rtools/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/choco-rtools/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/choco-rtools/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/choco-rtools/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/choco-rtools/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/choco-rtools/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/choco-rtools/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/choco-rtools/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/choco-rtools/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/choco-rtools/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/choco-rtools/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/choco-rtools/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/choco-rtools/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/choco-rtools/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/choco-rtools/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/choco-rtools/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/choco-rtools/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/choco-rtools/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/choco-rtools/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/choco-rtools/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/choco-rtools/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/choco-rtools/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/choco-rtools/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/choco-rtools/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/choco-rtools/deployments"
  .. .. ..$ created_at       : chr "2016-01-23T22:57:06Z"
  .. .. ..$ updated_at       : chr "2016-01-23T23:05:50Z"
  .. .. ..$ pushed_at        : chr "2016-08-12T09:37:40Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/choco-rtools.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/choco-rtools.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/choco-rtools.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/choco-rtools"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 48
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "Makefile"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 37645044
  .. .. ..$ name             : chr "ciplotm"
  .. .. ..$ full_name        : chr "leeper/ciplotm"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/ciplotm"
  .. .. ..$ description      : chr "Modified Version of Nick Cox's 'ciplot' ado for Stata"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/ciplotm"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/ciplotm/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/ciplotm/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/ciplotm/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/ciplotm/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/ciplotm/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/ciplotm/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/ciplotm/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/ciplotm/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/ciplotm/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/ciplotm/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/ciplotm/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/ciplotm/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/ciplotm/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/ciplotm/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/ciplotm/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/ciplotm/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/ciplotm/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/ciplotm/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/ciplotm/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/ciplotm/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/ciplotm/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/ciplotm/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/ciplotm/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/ciplotm/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/ciplotm/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/ciplotm/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/ciplotm/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/ciplotm/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/ciplotm/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/ciplotm/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/ciplotm/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/ciplotm/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/ciplotm/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/ciplotm/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/ciplotm/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/ciplotm/deployments"
  .. .. ..$ created_at       : chr "2015-06-18T07:39:45Z"
  .. .. ..$ updated_at       : chr "2016-08-16T14:12:31Z"
  .. .. ..$ pushed_at        : chr "2016-08-16T14:12:30Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/ciplotm.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/ciplotm.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/ciplotm.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/ciplotm"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 7
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "Stata"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 16218963
  .. .. ..$ name             : chr "colourlovers"
  .. .. ..$ full_name        : chr "leeper/colourlovers"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/colourlovers"
  .. .. ..$ description      : chr "R Client for the COLOURlovers API"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/colourlovers"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/colourlovers/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/colourlovers/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/colourlovers/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/colourlovers/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/colourlovers/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/colourlovers/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/colourlovers/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/colourlovers/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/colourlovers/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/colourlovers/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/colourlovers/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/colourlovers/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/colourlovers/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/colourlovers/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/colourlovers/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/colourlovers/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/colourlovers/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/colourlovers/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/colourlovers/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/colourlovers/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/colourlovers/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/colourlovers/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/colourlovers/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/colourlovers/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/colourlovers/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/colourlovers/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/colourlovers/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/colourlovers/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/colourlovers/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/colourlovers/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/colourlovers/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/colourlovers/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/colourlovers/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/colourlovers/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/colourlovers/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/colourlovers/deployments"
  .. .. ..$ created_at       : chr "2014-01-24T22:32:08Z"
  .. .. ..$ updated_at       : chr "2016-10-11T21:05:55Z"
  .. .. ..$ pushed_at        : chr "2016-09-06T13:33:20Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/colourlovers.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/colourlovers.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/colourlovers.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/colourlovers"
  .. .. ..$ homepage         : chr "http://cloud.r-project.org/package=colourlovers"
  .. .. ..$ size             : int 66
  .. .. ..$ stargazers_count : int 34
  .. .. ..$ watchers_count   : int 34
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi FALSE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 34
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 69040989
  .. .. ..$ name             : chr "conflictcourse"
  .. .. ..$ full_name        : chr "leeper/conflictcourse"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/conflictcourse"
  .. .. ..$ description      : chr "Materials for an MSc seminar \"Macro and Micro Foundations of Conflict\""
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/conflictcourse"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/conflictcourse/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/conflictcourse/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/conflictcourse/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/conflictcourse/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/conflictcourse/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/conflictcourse/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/conflictcourse/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/conflictcourse/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/conflictcourse/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/conflictcourse/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/conflictcourse/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/conflictcourse/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/conflictcourse/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/conflictcourse/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/conflictcourse/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/conflictcourse/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/conflictcourse/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/conflictcourse/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/conflictcourse/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/conflictcourse/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/conflictcourse/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/conflictcourse/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/conflictcourse/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/conflictcourse/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/conflictcourse/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/conflictcourse/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/conflictcourse/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/conflictcourse/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/conflictcourse/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/conflictcourse/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/conflictcourse/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/conflictcourse/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/conflictcourse/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/conflictcourse/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/conflictcourse/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/conflictcourse/deployments"
  .. .. ..$ created_at       : chr "2016-09-23T16:12:57Z"
  .. .. ..$ updated_at       : chr "2016-09-23T16:12:57Z"
  .. .. ..$ pushed_at        : chr "2016-09-23T16:12:57Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/conflictcourse.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/conflictcourse.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/conflictcourse.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/conflictcourse"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 0
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 16572515
  .. .. ..$ name             : chr "congressional-district-boundaries"
  .. .. ..$ full_name        : chr "leeper/congressional-district-boundaries"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/congressional-district-boundaries"
  .. .. ..$ description      : chr "GIS boundaries in GeoJSON format for all US Congressional Districts, 1789 to 2012"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/congressional-district-boundaries"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/congressional-district-boundaries/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/congressional-district-boundaries/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/congressional-district-boundaries/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/congressional-district-boundaries/deployments"
  .. .. ..$ created_at       : chr "2014-02-06T08:03:49Z"
  .. .. ..$ updated_at       : chr "2015-08-17T00:28:05Z"
  .. .. ..$ pushed_at        : chr "2014-02-06T18:42:24Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/congressional-district-boundaries.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/congressional-district-boundaries.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/congressional-district-boundaries.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/congressional-district-boundaries"
  .. .. ..$ homepage         : chr "cdmaps.polisci.ucla.edu"
  .. .. ..$ size             : int 558176
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 16999494
  .. .. ..$ name             : chr "cowsay"
  .. .. ..$ full_name        : chr "leeper/cowsay"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/cowsay"
  .. .. ..$ description      : chr "cowsay w/ more animals in R"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/cowsay"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/cowsay/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/cowsay/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/cowsay/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/cowsay/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/cowsay/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/cowsay/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/cowsay/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/cowsay/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/cowsay/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/cowsay/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/cowsay/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/cowsay/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/cowsay/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/cowsay/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/cowsay/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/cowsay/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/cowsay/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/cowsay/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/cowsay/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/cowsay/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/cowsay/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/cowsay/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/cowsay/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/cowsay/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/cowsay/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/cowsay/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/cowsay/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/cowsay/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/cowsay/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/cowsay/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/cowsay/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/cowsay/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/cowsay/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/cowsay/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/cowsay/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/cowsay/deployments"
  .. .. ..$ created_at       : chr "2014-02-19T21:27:30Z"
  .. .. ..$ updated_at       : chr "2014-02-19T22:11:45Z"
  .. .. ..$ pushed_at        : chr "2014-02-19T21:47:19Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/cowsay.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/cowsay.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/cowsay.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/cowsay"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 124
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 51245385
  .. .. ..$ name             : chr "crandatapkgs"
  .. .. ..$ full_name        : chr "leeper/crandatapkgs"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/crandatapkgs"
  .. .. ..$ description      : chr "Find Data-Only Packages on CRAN"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/crandatapkgs"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/crandatapkgs/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/crandatapkgs/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/crandatapkgs/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/crandatapkgs/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/crandatapkgs/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/crandatapkgs/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/crandatapkgs/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/crandatapkgs/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/crandatapkgs/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/crandatapkgs/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/crandatapkgs/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/crandatapkgs/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/crandatapkgs/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/crandatapkgs/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/crandatapkgs/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/crandatapkgs/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/crandatapkgs/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/crandatapkgs/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/crandatapkgs/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/crandatapkgs/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/crandatapkgs/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/crandatapkgs/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/crandatapkgs/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/crandatapkgs/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/crandatapkgs/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/crandatapkgs/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/crandatapkgs/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/crandatapkgs/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/crandatapkgs/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/crandatapkgs/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/crandatapkgs/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/crandatapkgs/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/crandatapkgs/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/crandatapkgs/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/crandatapkgs/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/crandatapkgs/deployments"
  .. .. ..$ created_at       : chr "2016-02-07T11:34:59Z"
  .. .. ..$ updated_at       : chr "2016-08-25T17:10:19Z"
  .. .. ..$ pushed_at        : chr "2016-08-02T15:31:36Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/crandatapkgs.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/crandatapkgs.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/crandatapkgs.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/crandatapkgs"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 15
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 12
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 12
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 63156431
  .. .. ..$ name             : chr "csvy"
  .. .. ..$ full_name        : chr "leeper/csvy"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/csvy"
  .. .. ..$ description      : chr "Import and Export CSV Data With a YAML Metadata Header"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/csvy"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/csvy/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/csvy/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/csvy/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/csvy/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/csvy/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/csvy/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/csvy/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/csvy/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/csvy/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/csvy/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/csvy/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/csvy/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/csvy/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/csvy/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/csvy/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/csvy/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/csvy/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/csvy/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/csvy/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/csvy/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/csvy/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/csvy/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/csvy/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/csvy/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/csvy/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/csvy/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/csvy/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/csvy/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/csvy/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/csvy/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/csvy/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/csvy/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/csvy/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/csvy/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/csvy/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/csvy/deployments"
  .. .. ..$ created_at       : chr "2016-07-12T12:34:12Z"
  .. .. ..$ updated_at       : chr "2016-08-01T08:32:29Z"
  .. .. ..$ pushed_at        : chr "2016-07-28T14:27:56Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/csvy.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/csvy.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/csvy.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/csvy"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 14
  .. .. ..$ stargazers_count : int 11
  .. .. ..$ watchers_count   : int 11
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 2
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 2
  .. .. ..$ watchers         : int 11
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 36451214
  .. .. ..$ name             : chr "data-versioning"
  .. .. ..$ full_name        : chr "leeper/data-versioning"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/data-versioning"
  .. .. ..$ description      : chr "Collecting thoughts about data versioning"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/data-versioning"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/data-versioning/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/data-versioning/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/data-versioning/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/data-versioning/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/data-versioning/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/data-versioning/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/data-versioning/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/data-versioning/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/data-versioning/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/data-versioning/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/data-versioning/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/data-versioning/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/data-versioning/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/data-versioning/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/data-versioning/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/data-versioning/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/data-versioning/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/data-versioning/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/data-versioning/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/data-versioning/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/data-versioning/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/data-versioning/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/data-versioning/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/data-versioning/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/data-versioning/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/data-versioning/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/data-versioning/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/data-versioning/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/data-versioning/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/data-versioning/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/data-versioning/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/data-versioning/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/data-versioning/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/data-versioning/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/data-versioning/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/data-versioning/deployments"
  .. .. ..$ created_at       : chr "2015-05-28T16:23:21Z"
  .. .. ..$ updated_at       : chr "2016-08-26T23:41:45Z"
  .. .. ..$ pushed_at        : chr "2015-06-20T07:51:34Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/data-versioning.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/data-versioning.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/data-versioning.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/data-versioning"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 152
  .. .. ..$ stargazers_count : int 2
  .. .. ..$ watchers_count   : int 2
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 2
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 42788374
  .. .. ..$ name             : chr "dataverse-1"
  .. .. ..$ full_name        : chr "leeper/dataverse-1"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/dataverse-1"
  .. .. ..$ description      : chr "A data repository framework to share and publish research data."
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/dataverse-1"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/dataverse-1/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/dataverse-1/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/dataverse-1/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/dataverse-1/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/dataverse-1/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/dataverse-1/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/dataverse-1/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/dataverse-1/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/dataverse-1/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/dataverse-1/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/dataverse-1/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/dataverse-1/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/dataverse-1/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/dataverse-1/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/dataverse-1/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/dataverse-1/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/dataverse-1/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/dataverse-1/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/dataverse-1/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/dataverse-1/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/dataverse-1/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/dataverse-1/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/dataverse-1/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/dataverse-1/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/dataverse-1/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/dataverse-1/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/dataverse-1/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/dataverse-1/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/dataverse-1/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/dataverse-1/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/dataverse-1/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/dataverse-1/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/dataverse-1/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/dataverse-1/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/dataverse-1/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/dataverse-1/deployments"
  .. .. ..$ created_at       : chr "2015-09-19T20:22:59Z"
  .. .. ..$ updated_at       : chr "2015-09-19T20:23:02Z"
  .. .. ..$ pushed_at        : chr "2015-11-14T20:05:50Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/dataverse-1.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/dataverse-1.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/dataverse-1.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/dataverse-1"
  .. .. ..$ homepage         : chr "http://dataverse.org"
  .. .. ..$ size             : int 24898
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "Java"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi FALSE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "4.2"
  .. ..$ :List of 68
  .. .. ..$ id               : int 29702132
  .. .. ..$ name             : chr "designcourse"
  .. .. ..$ full_name        : chr "leeper/designcourse"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/designcourse"
  .. .. ..$ description      : chr "Course materials for \"Research Design in Political Science\""
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/designcourse"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/designcourse/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/designcourse/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/designcourse/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/designcourse/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/designcourse/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/designcourse/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/designcourse/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/designcourse/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/designcourse/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/designcourse/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/designcourse/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/designcourse/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/designcourse/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/designcourse/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/designcourse/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/designcourse/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/designcourse/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/designcourse/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/designcourse/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/designcourse/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/designcourse/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/designcourse/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/designcourse/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/designcourse/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/designcourse/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/designcourse/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/designcourse/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/designcourse/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/designcourse/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/designcourse/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/designcourse/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/designcourse/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/designcourse/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/designcourse/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/designcourse/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/designcourse/deployments"
  .. .. ..$ created_at       : chr "2015-01-22T21:50:34Z"
  .. .. ..$ updated_at       : chr "2016-08-23T18:47:07Z"
  .. .. ..$ pushed_at        : chr "2016-10-19T15:15:29Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/designcourse.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/designcourse.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/designcourse.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/designcourse"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 95283
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "TeX"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "gh-pages"
  .. ..$ :List of 68
  .. .. ..$ id               : int 32414869
  .. .. ..$ name             : chr "devtools"
  .. .. ..$ full_name        : chr "leeper/devtools"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/devtools"
  .. .. ..$ description      : chr "Tools to make an R developer's life easier"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/devtools"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/devtools/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/devtools/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/devtools/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/devtools/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/devtools/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/devtools/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/devtools/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/devtools/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/devtools/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/devtools/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/devtools/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/devtools/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/devtools/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/devtools/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/devtools/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/devtools/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/devtools/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/devtools/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/devtools/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/devtools/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/devtools/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/devtools/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/devtools/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/devtools/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/devtools/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/devtools/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/devtools/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/devtools/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/devtools/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/devtools/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/devtools/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/devtools/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/devtools/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/devtools/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/devtools/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/devtools/deployments"
  .. .. ..$ created_at       : chr "2015-03-17T19:20:48Z"
  .. .. ..$ updated_at       : chr "2015-08-05T12:45:27Z"
  .. .. ..$ pushed_at        : chr "2016-01-13T15:19:14Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/devtools.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/devtools.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/devtools.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/devtools"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 3321
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 22100456
  .. .. ..$ name             : chr "dkstat"
  .. .. ..$ full_name        : chr "leeper/dkstat"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/dkstat"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/dkstat"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/dkstat/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/dkstat/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/dkstat/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/dkstat/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/dkstat/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/dkstat/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/dkstat/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/dkstat/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/dkstat/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/dkstat/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/dkstat/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/dkstat/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/dkstat/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/dkstat/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/dkstat/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/dkstat/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/dkstat/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/dkstat/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/dkstat/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/dkstat/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/dkstat/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/dkstat/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/dkstat/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/dkstat/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/dkstat/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/dkstat/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/dkstat/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/dkstat/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/dkstat/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/dkstat/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/dkstat/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/dkstat/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/dkstat/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/dkstat/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/dkstat/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/dkstat/deployments"
  .. .. ..$ created_at       : chr "2014-07-22T10:47:47Z"
  .. .. ..$ updated_at       : chr "2014-07-22T11:11:40Z"
  .. .. ..$ pushed_at        : chr "2014-07-22T11:11:40Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/dkstat.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/dkstat.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/dkstat.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/dkstat"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 261
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 55256134
  .. .. ..$ name             : chr "docthis"
  .. .. ..$ full_name        : chr "leeper/docthis"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/docthis"
  .. .. ..$ description      : chr "RStudio addin to create skeleton documentation for functions and data.frames"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/docthis"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/docthis/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/docthis/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/docthis/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/docthis/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/docthis/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/docthis/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/docthis/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/docthis/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/docthis/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/docthis/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/docthis/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/docthis/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/docthis/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/docthis/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/docthis/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/docthis/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/docthis/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/docthis/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/docthis/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/docthis/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/docthis/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/docthis/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/docthis/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/docthis/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/docthis/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/docthis/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/docthis/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/docthis/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/docthis/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/docthis/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/docthis/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/docthis/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/docthis/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/docthis/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/docthis/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/docthis/deployments"
  .. .. ..$ created_at       : chr "2016-04-01T19:08:41Z"
  .. .. ..$ updated_at       : chr "2016-06-17T13:49:02Z"
  .. .. ..$ pushed_at        : chr "2016-04-01T19:11:18Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/docthis.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/docthis.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/docthis.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/docthis"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 12
  .. .. ..$ stargazers_count : int 2
  .. .. ..$ watchers_count   : int 2
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 2
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 39673558
  .. .. ..$ name             : chr "drat"
  .. .. ..$ full_name        : chr "leeper/drat"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/drat"
  .. .. ..$ description      : chr "Drat R Archive Template"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/drat"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/drat/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/drat/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/drat/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/drat/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/drat/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/drat/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/drat/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/drat/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/drat/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/drat/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/drat/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/drat/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/drat/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/drat/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/drat/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/drat/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/drat/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/drat/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/drat/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/drat/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/drat/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/drat/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/drat/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/drat/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/drat/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/drat/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/drat/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/drat/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/drat/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/drat/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/drat/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/drat/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/drat/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/drat/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/drat/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/drat/deployments"
  .. .. ..$ created_at       : chr "2015-07-25T05:21:39Z"
  .. .. ..$ updated_at       : chr "2015-07-25T05:21:39Z"
  .. .. ..$ pushed_at        : chr "2016-01-01T02:36:42Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/drat.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/drat.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/drat.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/drat"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 456
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 16486298
  .. .. ..$ name             : chr "dvn"
  .. .. ..$ full_name        : chr "leeper/dvn"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/dvn"
  .. .. ..$ description      : chr "Access to the Dataverse Network APIs from R"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/dvn"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/dvn/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/dvn/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/dvn/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/dvn/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/dvn/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/dvn/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/dvn/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/dvn/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/dvn/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/dvn/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/dvn/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/dvn/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/dvn/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/dvn/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/dvn/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/dvn/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/dvn/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/dvn/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/dvn/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/dvn/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/dvn/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/dvn/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/dvn/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/dvn/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/dvn/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/dvn/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/dvn/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/dvn/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/dvn/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/dvn/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/dvn/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/dvn/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/dvn/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/dvn/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/dvn/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/dvn/deployments"
  .. .. ..$ created_at       : chr "2014-02-03T17:11:24Z"
  .. .. ..$ updated_at       : chr "2015-11-08T16:03:14Z"
  .. .. ..$ pushed_at        : chr "2015-11-08T16:08:15Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/dvn.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/dvn.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/dvn.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/dvn"
  .. .. ..$ homepage         : chr "http://cran.r-project.org/web/packages/dvn/index.html"
  .. .. ..$ size             : int 402
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 69484625
  .. .. ..$ name             : chr "effect-heterogeneity"
  .. .. ..$ full_name        : chr "leeper/effect-heterogeneity"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/effect-heterogeneity"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/effect-heterogeneity"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/effect-heterogeneity/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/effect-heterogeneity/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/effect-heterogeneity/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/effect-heterogeneity/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/effect-heterogeneity/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/effect-heterogeneity/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/effect-heterogeneity/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/effect-heterogeneity/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/effect-heterogeneity/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/effect-heterogeneity/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/effect-heterogeneity/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/effect-heterogeneity/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/effect-heterogeneity/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/effect-heterogeneity/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/effect-heterogeneity/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/effect-heterogeneity/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/effect-heterogeneity/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/effect-heterogeneity/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/effect-heterogeneity/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/effect-heterogeneity/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/effect-heterogeneity/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/effect-heterogeneity/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/effect-heterogeneity/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/effect-heterogeneity/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/effect-heterogeneity/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/effect-heterogeneity/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/effect-heterogeneity/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/effect-heterogeneity/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/effect-heterogeneity/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/effect-heterogeneity/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/effect-heterogeneity/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/effect-heterogeneity/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/effect-heterogeneity/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/effect-heterogeneity/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/effect-heterogeneity/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/effect-heterogeneity/deployments"
  .. .. ..$ created_at       : chr "2016-09-28T16:55:21Z"
  .. .. ..$ updated_at       : chr "2016-09-28T16:55:21Z"
  .. .. ..$ pushed_at        : chr "2016-09-29T09:00:24Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/effect-heterogeneity.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/effect-heterogeneity.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/effect-heterogeneity.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/effect-heterogeneity"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 1
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 12600801
  .. .. ..$ name             : chr "expcourse"
  .. .. ..$ full_name        : chr "leeper/expcourse"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/expcourse"
  .. .. ..$ description      : chr "Course materials for \"Experimentation and Causal Inference\""
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/expcourse"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/expcourse/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/expcourse/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/expcourse/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/expcourse/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/expcourse/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/expcourse/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/expcourse/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/expcourse/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/expcourse/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/expcourse/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/expcourse/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/expcourse/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/expcourse/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/expcourse/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/expcourse/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/expcourse/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/expcourse/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/expcourse/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/expcourse/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/expcourse/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/expcourse/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/expcourse/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/expcourse/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/expcourse/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/expcourse/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/expcourse/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/expcourse/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/expcourse/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/expcourse/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/expcourse/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/expcourse/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/expcourse/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/expcourse/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/expcourse/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/expcourse/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/expcourse/deployments"
  .. .. ..$ created_at       : chr "2013-09-04T20:01:57Z"
  .. .. ..$ updated_at       : chr "2016-02-02T13:46:44Z"
  .. .. ..$ pushed_at        : chr "2016-08-18T22:53:20Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/expcourse.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/expcourse.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/expcourse.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/expcourse"
  .. .. ..$ homepage         : chr "http://www.thomasleeper.com/expcourse"
  .. .. ..$ size             : int 2139
  .. .. ..$ stargazers_count : int 2
  .. .. ..$ watchers_count   : int 2
  .. .. ..$ language         : chr "TeX"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 2
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 2
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 2
  .. .. ..$ default_branch   : chr "gh-pages"
  .. ..$ :List of 68
  .. .. ..$ id               : int 69040960
  .. .. ..$ name             : chr "exppolcourse"
  .. .. ..$ full_name        : chr "leeper/exppolcourse"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/exppolcourse"
  .. .. ..$ description      : chr "Materials for a BSc seminar \"Experimenting With Politics\""
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/exppolcourse"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/exppolcourse/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/exppolcourse/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/exppolcourse/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/exppolcourse/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/exppolcourse/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/exppolcourse/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/exppolcourse/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/exppolcourse/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/exppolcourse/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/exppolcourse/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/exppolcourse/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/exppolcourse/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/exppolcourse/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/exppolcourse/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/exppolcourse/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/exppolcourse/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/exppolcourse/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/exppolcourse/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/exppolcourse/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/exppolcourse/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/exppolcourse/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/exppolcourse/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/exppolcourse/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/exppolcourse/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/exppolcourse/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/exppolcourse/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/exppolcourse/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/exppolcourse/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/exppolcourse/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/exppolcourse/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/exppolcourse/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/exppolcourse/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/exppolcourse/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/exppolcourse/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/exppolcourse/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/exppolcourse/deployments"
  .. .. ..$ created_at       : chr "2016-09-23T16:12:39Z"
  .. .. ..$ updated_at       : chr "2016-09-23T16:12:39Z"
  .. .. ..$ pushed_at        : chr "2016-09-23T16:12:40Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/exppolcourse.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/exppolcourse.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/exppolcourse.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/exppolcourse"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 0
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 10626943
  .. .. ..$ name             : chr "expResults"
  .. .. ..$ full_name        : chr "leeper/expResults"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/expResults"
  .. .. ..$ description      : chr "Tools for calculating, tabulating, and visualizing experimental results"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/expResults"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/expResults/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/expResults/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/expResults/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/expResults/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/expResults/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/expResults/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/expResults/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/expResults/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/expResults/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/expResults/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/expResults/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/expResults/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/expResults/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/expResults/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/expResults/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/expResults/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/expResults/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/expResults/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/expResults/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/expResults/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/expResults/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/expResults/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/expResults/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/expResults/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/expResults/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/expResults/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/expResults/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/expResults/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/expResults/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/expResults/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/expResults/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/expResults/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/expResults/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/expResults/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/expResults/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/expResults/deployments"
  .. .. ..$ created_at       : chr "2013-06-11T17:35:53Z"
  .. .. ..$ updated_at       : chr "2013-11-10T10:17:13Z"
  .. .. ..$ pushed_at        : chr "2013-11-10T10:17:06Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/expResults.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/expResults.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/expResults.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/expResults"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 124
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 59699871
  .. .. ..$ name             : chr "GK2011"
  .. .. ..$ full_name        : chr "leeper/GK2011"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/GK2011"
  .. .. ..$ description      : chr "Gaines and Kuklinski (2011) Estimators for Hybrid Experiments"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/GK2011"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/GK2011/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/GK2011/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/GK2011/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/GK2011/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/GK2011/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/GK2011/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/GK2011/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/GK2011/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/GK2011/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/GK2011/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/GK2011/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/GK2011/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/GK2011/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/GK2011/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/GK2011/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/GK2011/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/GK2011/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/GK2011/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/GK2011/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/GK2011/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/GK2011/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/GK2011/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/GK2011/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/GK2011/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/GK2011/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/GK2011/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/GK2011/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/GK2011/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/GK2011/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/GK2011/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/GK2011/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/GK2011/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/GK2011/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/GK2011/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/GK2011/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/GK2011/deployments"
  .. .. ..$ created_at       : chr "2016-05-25T21:45:10Z"
  .. .. ..$ updated_at       : chr "2016-06-07T01:11:32Z"
  .. .. ..$ pushed_at        : chr "2016-05-26T16:43:10Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/GK2011.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/GK2011.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/GK2011.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/GK2011"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 22
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 59957482
  .. .. ..$ name             : chr "GREA"
  .. .. ..$ full_name        : chr "leeper/GREA"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/GREA"
  .. .. ..$ description      : chr "Gotta Read Em All: RStudio Add-In to interactively read ALL the data into R"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/GREA"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/GREA/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/GREA/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/GREA/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/GREA/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/GREA/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/GREA/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/GREA/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/GREA/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/GREA/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/GREA/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/GREA/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/GREA/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/GREA/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/GREA/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/GREA/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/GREA/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/GREA/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/GREA/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/GREA/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/GREA/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/GREA/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/GREA/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/GREA/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/GREA/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/GREA/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/GREA/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/GREA/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/GREA/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/GREA/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/GREA/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/GREA/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/GREA/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/GREA/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/GREA/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/GREA/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/GREA/deployments"
  .. .. ..$ created_at       : chr "2016-05-29T18:17:12Z"
  .. .. ..$ updated_at       : chr "2016-05-29T18:17:13Z"
  .. .. ..$ pushed_at        : chr "2016-06-10T09:13:45Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/GREA.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/GREA.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/GREA.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/GREA"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 1490
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 50747949
  .. .. ..$ name             : chr "hints"
  .. .. ..$ full_name        : chr "leeper/hints"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/hints"
  .. .. ..$ description      : chr "Automatically exported from code.google.com/p/hints"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/hints"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/hints/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/hints/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/hints/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/hints/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/hints/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/hints/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/hints/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/hints/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/hints/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/hints/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/hints/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/hints/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/hints/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/hints/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/hints/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/hints/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/hints/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/hints/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/hints/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/hints/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/hints/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/hints/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/hints/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/hints/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/hints/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/hints/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/hints/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/hints/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/hints/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/hints/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/hints/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/hints/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/hints/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/hints/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/hints/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/hints/deployments"
  .. .. ..$ created_at       : chr "2016-01-30T22:28:15Z"
  .. .. ..$ updated_at       : chr "2016-01-30T22:28:58Z"
  .. .. ..$ pushed_at        : chr "2016-01-30T22:30:47Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/hints.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/hints.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/hints.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/hints"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 17
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "TeX"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi FALSE
  .. .. ..$ has_wiki         : logi FALSE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 11063005
  .. .. ..$ name             : chr "Impressive"
  .. .. ..$ full_name        : chr "leeper/Impressive"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "leeper"
  .. .. .. ..$ id                 : int 3505428
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/3505428?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/leeper"
  .. .. .. ..$ html_url           : chr "https://github.com/leeper"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/leeper/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/leeper/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/leeper/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/leeper/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/leeper/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/leeper/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/leeper/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/leeper/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/leeper/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/leeper/Impressive"
  .. .. ..$ description      : chr "A fork of Martin Fiedler's Impressive presentation application"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/leeper/Impressive"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/leeper/Impressive/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/leeper/Impressive/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/leeper/Impressive/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/leeper/Impressive/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/leeper/Impressive/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/leeper/Impressive/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/leeper/Impressive/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/leeper/Impressive/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/leeper/Impressive/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/leeper/Impressive/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/leeper/Impressive/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/leeper/Impressive/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/leeper/Impressive/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/leeper/Impressive/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/leeper/Impressive/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/leeper/Impressive/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/leeper/Impressive/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/leeper/Impressive/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/leeper/Impressive/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/leeper/Impressive/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/leeper/Impressive/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/leeper/Impressive/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/leeper/Impressive/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/leeper/Impressive/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/leeper/Impressive/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/leeper/Impressive/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/leeper/Impressive/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/leeper/Impressive/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/leeper/Impressive/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/leeper/Impressive/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/leeper/Impressive/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/leeper/Impressive/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/leeper/Impressive/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/leeper/Impressive/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/leeper/Impressive/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/leeper/Impressive/deployments"
  .. .. ..$ created_at       : chr "2013-06-30T01:49:00Z"
  .. .. ..$ updated_at       : chr "2015-08-04T20:52:57Z"
  .. .. ..$ pushed_at        : chr "2013-10-22T21:37:19Z"
  .. .. ..$ git_url          : chr "git://github.com/leeper/Impressive.git"
  .. .. ..$ ssh_url          : chr "git@github.com:leeper/Impressive.git"
  .. .. ..$ clone_url        : chr "https://github.com/leeper/Impressive.git"
  .. .. ..$ svn_url          : chr "https://github.com/leeper/Impressive"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 500
  .. .. ..$ stargazers_count : int 3
  .. .. ..$ watchers_count   : int 3
  .. .. ..$ language         : chr "Python"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 3
  .. .. ..$ default_branch   : chr "master"
  ..$ :List of 30
  .. ..$ :List of 68
  .. .. ..$ id               : int 57878579
  .. .. ..$ name             : chr "aqi_pdf"
  .. .. ..$ full_name        : chr "masalmon/aqi_pdf"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/aqi_pdf"
  .. .. ..$ description      : chr ":mask: Scraping a pdf with AQI data from the Maharashtra Pollution Control Board :mask:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/aqi_pdf"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/aqi_pdf/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/aqi_pdf/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/aqi_pdf/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/aqi_pdf/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/aqi_pdf/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/aqi_pdf/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/aqi_pdf/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/aqi_pdf/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/aqi_pdf/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/aqi_pdf/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/aqi_pdf/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/aqi_pdf/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/aqi_pdf/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/aqi_pdf/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/aqi_pdf/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/aqi_pdf/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/aqi_pdf/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/aqi_pdf/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/aqi_pdf/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/aqi_pdf/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/aqi_pdf/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/aqi_pdf/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/aqi_pdf/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/aqi_pdf/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/aqi_pdf/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/aqi_pdf/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/aqi_pdf/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/aqi_pdf/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/aqi_pdf/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/aqi_pdf/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/aqi_pdf/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/aqi_pdf/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/aqi_pdf/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/aqi_pdf/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/aqi_pdf/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/aqi_pdf/deployments"
  .. .. ..$ created_at       : chr "2016-05-02T09:34:17Z"
  .. .. ..$ updated_at       : chr "2016-08-30T11:20:02Z"
  .. .. ..$ pushed_at        : chr "2016-05-02T10:20:30Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/aqi_pdf.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/aqi_pdf.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/aqi_pdf.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/aqi_pdf"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 1993
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 2
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 2
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 56446894
  .. .. ..$ name             : chr "catan_card_game"
  .. .. ..$ full_name        : chr "masalmon/catan_card_game"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/catan_card_game"
  .. .. ..$ description      : chr "Playing with Catan cards, playing with R"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/catan_card_game"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/catan_card_game/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/catan_card_game/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/catan_card_game/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/catan_card_game/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/catan_card_game/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/catan_card_game/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/catan_card_game/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/catan_card_game/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/catan_card_game/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/catan_card_game/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/catan_card_game/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/catan_card_game/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/catan_card_game/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/catan_card_game/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/catan_card_game/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/catan_card_game/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/catan_card_game/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/catan_card_game/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/catan_card_game/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/catan_card_game/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/catan_card_game/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/catan_card_game/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/catan_card_game/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/catan_card_game/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/catan_card_game/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/catan_card_game/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/catan_card_game/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/catan_card_game/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/catan_card_game/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/catan_card_game/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/catan_card_game/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/catan_card_game/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/catan_card_game/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/catan_card_game/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/catan_card_game/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/catan_card_game/deployments"
  .. .. ..$ created_at       : chr "2016-04-17T16:34:19Z"
  .. .. ..$ updated_at       : chr "2016-04-17T17:08:20Z"
  .. .. ..$ pushed_at        : chr "2016-05-06T19:58:23Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/catan_card_game.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/catan_card_game.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/catan_card_game.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/catan_card_game"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 4435
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 54405013
  .. .. ..$ name             : chr "colourlovers_patterns"
  .. .. ..$ full_name        : chr "masalmon/colourlovers_patterns"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/colourlovers_patterns"
  .. .. ..$ description      : chr "See https://github.com/leeper/colourlovers/issues/4"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/colourlovers_patterns"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/colourlovers_patterns/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/colourlovers_patterns/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/colourlovers_patterns/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/colourlovers_patterns/deployments"
  .. .. ..$ created_at       : chr "2016-03-21T16:25:40Z"
  .. .. ..$ updated_at       : chr "2016-03-22T12:52:20Z"
  .. .. ..$ pushed_at        : chr "2016-03-21T16:31:53Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/colourlovers_patterns.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/colourlovers_patterns.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/colourlovers_patterns.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/colourlovers_patterns"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 719
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 50439405
  .. .. ..$ name             : chr "convertagd"
  .. .. ..$ full_name        : chr "masalmon/convertagd"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/convertagd"
  .. .. ..$ description      : chr ":runner: R package for converting .agd files from Actigraph into data.frames :bicyclist:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/convertagd"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/convertagd/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/convertagd/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/convertagd/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/convertagd/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/convertagd/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/convertagd/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/convertagd/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/convertagd/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/convertagd/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/convertagd/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/convertagd/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/convertagd/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/convertagd/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/convertagd/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/convertagd/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/convertagd/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/convertagd/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/convertagd/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/convertagd/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/convertagd/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/convertagd/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/convertagd/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/convertagd/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/convertagd/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/convertagd/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/convertagd/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/convertagd/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/convertagd/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/convertagd/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/convertagd/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/convertagd/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/convertagd/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/convertagd/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/convertagd/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/convertagd/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/convertagd/deployments"
  .. .. ..$ created_at       : chr "2016-01-26T15:49:44Z"
  .. .. ..$ updated_at       : chr "2016-04-13T11:42:57Z"
  .. .. ..$ pushed_at        : chr "2016-04-15T11:51:37Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/convertagd.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/convertagd.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/convertagd.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/convertagd"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 379
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 68307946
  .. .. ..$ name             : chr "cpcb"
  .. .. ..$ full_name        : chr "masalmon/cpcb"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/cpcb"
  .. .. ..$ description      : chr ":mask: Scraping India CPCB air quality data :mask:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/cpcb"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/cpcb/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/cpcb/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/cpcb/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/cpcb/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/cpcb/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/cpcb/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/cpcb/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/cpcb/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/cpcb/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/cpcb/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/cpcb/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/cpcb/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/cpcb/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/cpcb/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/cpcb/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/cpcb/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/cpcb/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/cpcb/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/cpcb/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/cpcb/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/cpcb/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/cpcb/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/cpcb/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/cpcb/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/cpcb/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/cpcb/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/cpcb/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/cpcb/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/cpcb/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/cpcb/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/cpcb/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/cpcb/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/cpcb/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/cpcb/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/cpcb/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/cpcb/deployments"
  .. .. ..$ created_at       : chr "2016-09-15T15:45:42Z"
  .. .. ..$ updated_at       : chr "2016-09-16T16:19:35Z"
  .. .. ..$ pushed_at        : chr "2016-09-30T08:19:50Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/cpcb.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/cpcb.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/cpcb.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/cpcb"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 18
  .. .. ..$ stargazers_count : int 2
  .. .. ..$ watchers_count   : int 2
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 5
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 5
  .. .. ..$ watchers         : int 2
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 55674394
  .. .. ..$ name             : chr "domar_datos"
  .. .. ..$ full_name        : chr "masalmon/domar_datos"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/domar_datos"
  .. .. ..$ description      : chr ":boom: Datos y codigo para la sessión \"Domar datos\" el 14 abril en el CREAL :boom:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/domar_datos"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/domar_datos/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/domar_datos/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/domar_datos/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/domar_datos/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/domar_datos/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/domar_datos/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/domar_datos/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/domar_datos/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/domar_datos/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/domar_datos/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/domar_datos/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/domar_datos/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/domar_datos/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/domar_datos/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/domar_datos/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/domar_datos/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/domar_datos/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/domar_datos/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/domar_datos/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/domar_datos/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/domar_datos/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/domar_datos/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/domar_datos/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/domar_datos/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/domar_datos/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/domar_datos/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/domar_datos/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/domar_datos/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/domar_datos/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/domar_datos/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/domar_datos/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/domar_datos/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/domar_datos/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/domar_datos/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/domar_datos/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/domar_datos/deployments"
  .. .. ..$ created_at       : chr "2016-04-07T07:44:36Z"
  .. .. ..$ updated_at       : chr "2016-04-14T13:15:37Z"
  .. .. ..$ pushed_at        : chr "2016-04-20T09:27:09Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/domar_datos.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/domar_datos.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/domar_datos.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/domar_datos"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 631
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 60245445
  .. .. ..$ name             : chr "duststorm"
  .. .. ..$ full_name        : chr "masalmon/duststorm"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/duststorm"
  .. .. ..$ description      : chr ":mask: PM10 in Delhi during the dust storm in May 2016, small viz work for OpenAQ :mask:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/duststorm"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/duststorm/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/duststorm/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/duststorm/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/duststorm/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/duststorm/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/duststorm/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/duststorm/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/duststorm/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/duststorm/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/duststorm/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/duststorm/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/duststorm/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/duststorm/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/duststorm/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/duststorm/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/duststorm/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/duststorm/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/duststorm/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/duststorm/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/duststorm/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/duststorm/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/duststorm/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/duststorm/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/duststorm/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/duststorm/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/duststorm/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/duststorm/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/duststorm/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/duststorm/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/duststorm/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/duststorm/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/duststorm/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/duststorm/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/duststorm/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/duststorm/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/duststorm/deployments"
  .. .. ..$ created_at       : chr "2016-06-02T08:16:02Z"
  .. .. ..$ updated_at       : chr "2016-08-30T11:21:39Z"
  .. .. ..$ pushed_at        : chr "2016-06-02T08:20:26Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/duststorm.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/duststorm.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/duststorm.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/duststorm"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 8436
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 61539091
  .. .. ..$ name             : chr "EML"
  .. .. ..$ full_name        : chr "masalmon/EML"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/EML"
  .. .. ..$ description      : chr " Ecological Metadata Language interface for R: synthesis and integration of heterogenous data"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/EML"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/EML/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/EML/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/EML/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/EML/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/EML/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/EML/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/EML/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/EML/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/EML/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/EML/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/EML/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/EML/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/EML/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/EML/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/EML/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/EML/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/EML/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/EML/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/EML/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/EML/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/EML/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/EML/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/EML/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/EML/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/EML/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/EML/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/EML/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/EML/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/EML/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/EML/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/EML/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/EML/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/EML/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/EML/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/EML/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/EML/deployments"
  .. .. ..$ created_at       : chr "2016-06-20T10:30:18Z"
  .. .. ..$ updated_at       : chr "2016-06-20T10:30:22Z"
  .. .. ..$ pushed_at        : chr "2016-10-17T16:08:49Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/EML.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/EML.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/EML.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/EML"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 4884
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 65557499
  .. .. ..$ name             : chr "fietsen"
  .. .. ..$ full_name        : chr "masalmon/fietsen"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/fietsen"
  .. .. ..$ description      : chr ":bicyclist: Finding cycle paths and tracks in 7 cities :bicyclist: "
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/fietsen"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/fietsen/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/fietsen/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/fietsen/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/fietsen/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/fietsen/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/fietsen/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/fietsen/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/fietsen/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/fietsen/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/fietsen/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/fietsen/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/fietsen/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/fietsen/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/fietsen/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/fietsen/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/fietsen/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/fietsen/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/fietsen/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/fietsen/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/fietsen/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/fietsen/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/fietsen/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/fietsen/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/fietsen/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/fietsen/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/fietsen/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/fietsen/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/fietsen/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/fietsen/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/fietsen/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/fietsen/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/fietsen/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/fietsen/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/fietsen/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/fietsen/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/fietsen/deployments"
  .. .. ..$ created_at       : chr "2016-08-12T14:01:52Z"
  .. .. ..$ updated_at       : chr "2016-09-22T15:30:55Z"
  .. .. ..$ pushed_at        : chr "2016-09-23T07:13:56Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/fietsen.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/fietsen.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/fietsen.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/fietsen"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 76455
  .. .. ..$ stargazers_count : int 2
  .. .. ..$ watchers_count   : int 2
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 2
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 2
  .. .. ..$ watchers         : int 2
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 66141898
  .. .. ..$ name             : chr "first_7_jobs"
  .. .. ..$ full_name        : chr "masalmon/first_7_jobs"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/first_7_jobs"
  .. .. ..$ description      : chr ":monkey_face: Parsing #first7jobs tweets and assigning them a field of work using Monkeylearn :monkey_face:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/first_7_jobs"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/first_7_jobs/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/first_7_jobs/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/first_7_jobs/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/first_7_jobs/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/first_7_jobs/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/first_7_jobs/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/first_7_jobs/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/first_7_jobs/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/first_7_jobs/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/first_7_jobs/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/first_7_jobs/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/first_7_jobs/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/first_7_jobs/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/first_7_jobs/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/first_7_jobs/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/first_7_jobs/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/first_7_jobs/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/first_7_jobs/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/first_7_jobs/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/first_7_jobs/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/first_7_jobs/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/first_7_jobs/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/first_7_jobs/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/first_7_jobs/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/first_7_jobs/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/first_7_jobs/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/first_7_jobs/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/first_7_jobs/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/first_7_jobs/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/first_7_jobs/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/first_7_jobs/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/first_7_jobs/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/first_7_jobs/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/first_7_jobs/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/first_7_jobs/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/first_7_jobs/deployments"
  .. .. ..$ created_at       : chr "2016-08-20T10:47:30Z"
  .. .. ..$ updated_at       : chr "2016-10-23T12:35:05Z"
  .. .. ..$ pushed_at        : chr "2016-09-05T07:19:35Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/first_7_jobs.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/first_7_jobs.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/first_7_jobs.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/first_7_jobs"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 7952
  .. .. ..$ stargazers_count : int 15
  .. .. ..$ watchers_count   : int 15
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 2
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 2
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 15
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 65678851
  .. .. ..$ name             : chr "geoparsing_tweets"
  .. .. ..$ full_name        : chr "masalmon/geoparsing_tweets"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/geoparsing_tweets"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/geoparsing_tweets"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/geoparsing_tweets/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/geoparsing_tweets/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/geoparsing_tweets/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/geoparsing_tweets/deployments"
  .. .. ..$ created_at       : chr "2016-08-14T17:46:31Z"
  .. .. ..$ updated_at       : chr "2016-08-14T17:47:32Z"
  .. .. ..$ pushed_at        : chr "2016-08-14T17:47:31Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/geoparsing_tweets.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/geoparsing_tweets.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/geoparsing_tweets.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/geoparsing_tweets"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 89
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 71355120
  .. .. ..$ name             : chr "ggExtra"
  .. .. ..$ full_name        : chr "masalmon/ggExtra"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/ggExtra"
  .. .. ..$ description      : chr "Add marginal histograms to ggplot2, and more ggplot2 enhancements"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/ggExtra"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/ggExtra/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/ggExtra/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/ggExtra/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/ggExtra/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/ggExtra/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/ggExtra/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/ggExtra/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/ggExtra/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/ggExtra/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/ggExtra/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/ggExtra/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/ggExtra/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/ggExtra/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/ggExtra/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/ggExtra/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/ggExtra/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/ggExtra/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/ggExtra/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/ggExtra/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/ggExtra/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/ggExtra/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/ggExtra/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/ggExtra/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/ggExtra/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/ggExtra/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/ggExtra/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/ggExtra/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/ggExtra/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/ggExtra/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/ggExtra/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/ggExtra/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/ggExtra/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/ggExtra/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/ggExtra/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/ggExtra/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/ggExtra/deployments"
  .. .. ..$ created_at       : chr "2016-10-19T12:33:18Z"
  .. .. ..$ updated_at       : chr "2016-10-19T12:33:19Z"
  .. .. ..$ pushed_at        : chr "2016-10-05T18:44:12Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/ggExtra.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/ggExtra.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/ggExtra.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/ggExtra"
  .. .. ..$ homepage         : chr "http://daattali.com/shiny/ggExtra-ggMarginal-demo/"
  .. .. ..$ size             : int 689
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 51748125
  .. .. ..$ name             : chr "india_trains"
  .. .. ..$ full_name        : chr "masalmon/india_trains"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/india_trains"
  .. .. ..$ description      : chr ":train: Getting and using data about Indian trains and train stations :train:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/india_trains"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/india_trains/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/india_trains/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/india_trains/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/india_trains/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/india_trains/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/india_trains/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/india_trains/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/india_trains/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/india_trains/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/india_trains/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/india_trains/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/india_trains/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/india_trains/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/india_trains/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/india_trains/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/india_trains/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/india_trains/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/india_trains/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/india_trains/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/india_trains/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/india_trains/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/india_trains/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/india_trains/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/india_trains/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/india_trains/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/india_trains/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/india_trains/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/india_trains/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/india_trains/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/india_trains/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/india_trains/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/india_trains/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/india_trains/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/india_trains/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/india_trains/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/india_trains/deployments"
  .. .. ..$ created_at       : chr "2016-02-15T10:28:35Z"
  .. .. ..$ updated_at       : chr "2016-10-15T22:26:25Z"
  .. .. ..$ pushed_at        : chr "2016-10-16T12:01:06Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/india_trains.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/india_trains.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/india_trains.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/india_trains"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 6426
  .. .. ..$ stargazers_count : int 2
  .. .. ..$ watchers_count   : int 2
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 2
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 54842683
  .. .. ..$ name             : chr "janeausten"
  .. .. ..$ full_name        : chr "masalmon/janeausten"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/janeausten"
  .. .. ..$ description      : chr ":earth_americas: A small analysis using https://github.com/juliasilge/janeaustenr and Named Entity Recognition "| __truncated__
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/janeausten"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/janeausten/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/janeausten/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/janeausten/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/janeausten/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/janeausten/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/janeausten/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/janeausten/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/janeausten/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/janeausten/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/janeausten/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/janeausten/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/janeausten/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/janeausten/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/janeausten/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/janeausten/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/janeausten/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/janeausten/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/janeausten/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/janeausten/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/janeausten/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/janeausten/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/janeausten/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/janeausten/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/janeausten/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/janeausten/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/janeausten/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/janeausten/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/janeausten/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/janeausten/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/janeausten/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/janeausten/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/janeausten/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/janeausten/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/janeausten/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/janeausten/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/janeausten/deployments"
  .. .. ..$ created_at       : chr "2016-03-27T18:37:28Z"
  .. .. ..$ updated_at       : chr "2016-08-30T11:23:12Z"
  .. .. ..$ pushed_at        : chr "2016-03-27T19:09:35Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/janeausten.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/janeausten.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/janeausten.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/janeausten"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 146
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 71770057
  .. .. ..$ name             : chr "jss_genderizer"
  .. .. ..$ full_name        : chr "masalmon/jss_genderizer"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/jss_genderizer"
  .. .. ..$ description      : chr "Using genderizeR on authors of JSS papers"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/jss_genderizer"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/jss_genderizer/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/jss_genderizer/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/jss_genderizer/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/jss_genderizer/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/jss_genderizer/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/jss_genderizer/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/jss_genderizer/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/jss_genderizer/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/jss_genderizer/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/jss_genderizer/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/jss_genderizer/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/jss_genderizer/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/jss_genderizer/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/jss_genderizer/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/jss_genderizer/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/jss_genderizer/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/jss_genderizer/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/jss_genderizer/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/jss_genderizer/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/jss_genderizer/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/jss_genderizer/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/jss_genderizer/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/jss_genderizer/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/jss_genderizer/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/jss_genderizer/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/jss_genderizer/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/jss_genderizer/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/jss_genderizer/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/jss_genderizer/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/jss_genderizer/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/jss_genderizer/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/jss_genderizer/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/jss_genderizer/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/jss_genderizer/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/jss_genderizer/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/jss_genderizer/deployments"
  .. .. ..$ created_at       : chr "2016-10-24T08:52:01Z"
  .. .. ..$ updated_at       : chr "2016-10-24T11:00:47Z"
  .. .. ..$ pushed_at        : chr "2016-10-24T19:29:48Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/jss_genderizer.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/jss_genderizer.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/jss_genderizer.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/jss_genderizer"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 140
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 58225930
  .. .. ..$ name             : chr "kervillebourg"
  .. .. ..$ full_name        : chr "masalmon/kervillebourg"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/kervillebourg"
  .. .. ..$ description      : chr "Visualizing names of French villages (communes, métropole only)"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/kervillebourg"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/kervillebourg/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/kervillebourg/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/kervillebourg/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/kervillebourg/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/kervillebourg/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/kervillebourg/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/kervillebourg/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/kervillebourg/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/kervillebourg/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/kervillebourg/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/kervillebourg/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/kervillebourg/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/kervillebourg/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/kervillebourg/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/kervillebourg/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/kervillebourg/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/kervillebourg/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/kervillebourg/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/kervillebourg/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/kervillebourg/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/kervillebourg/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/kervillebourg/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/kervillebourg/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/kervillebourg/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/kervillebourg/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/kervillebourg/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/kervillebourg/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/kervillebourg/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/kervillebourg/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/kervillebourg/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/kervillebourg/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/kervillebourg/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/kervillebourg/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/kervillebourg/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/kervillebourg/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/kervillebourg/deployments"
  .. .. ..$ created_at       : chr "2016-05-06T18:07:52Z"
  .. .. ..$ updated_at       : chr "2016-05-06T18:07:52Z"
  .. .. ..$ pushed_at        : chr "2016-05-06T18:54:25Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/kervillebourg.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/kervillebourg.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/kervillebourg.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/kervillebourg"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 8088
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 64486391
  .. .. ..$ name             : chr "laads"
  .. .. ..$ full_name        : chr "masalmon/laads"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/laads"
  .. .. ..$ description      : chr ":rocket: R Package for the NASA API of MODIS Level 1 and Atmosphere data products :rocket:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/laads"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/laads/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/laads/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/laads/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/laads/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/laads/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/laads/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/laads/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/laads/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/laads/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/laads/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/laads/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/laads/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/laads/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/laads/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/laads/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/laads/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/laads/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/laads/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/laads/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/laads/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/laads/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/laads/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/laads/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/laads/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/laads/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/laads/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/laads/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/laads/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/laads/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/laads/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/laads/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/laads/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/laads/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/laads/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/laads/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/laads/deployments"
  .. .. ..$ created_at       : chr "2016-07-29T14:21:14Z"
  .. .. ..$ updated_at       : chr "2016-09-26T18:35:11Z"
  .. .. ..$ pushed_at        : chr "2016-08-01T10:56:54Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/laads.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/laads.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/laads.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/laads"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 45
  .. .. ..$ stargazers_count : int 8
  .. .. ..$ watchers_count   : int 8
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 1
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 4
  .. .. ..$ forks            : int 1
  .. .. ..$ open_issues      : int 4
  .. .. ..$ watchers         : int 8
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 53740103
  .. .. ..$ name             : chr "masalmon.github.io"
  .. .. ..$ full_name        : chr "masalmon/masalmon.github.io"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/masalmon.github.io"
  .. .. ..$ description      : chr "Code for my website"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/masalmon.github.io"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/masalmon.github.io/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/masalmon.github.io/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/masalmon.github.io/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/masalmon.github.io/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/masalmon.github.io/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/masalmon.github.io/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/masalmon.github.io/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/masalmon.github.io/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/masalmon.github.io/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/masalmon.github.io/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/masalmon.github.io/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/masalmon.github.io/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/masalmon.github.io/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/masalmon.github.io/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/masalmon.github.io/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/masalmon.github.io/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/masalmon.github.io/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/masalmon.github.io/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/masalmon.github.io/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/masalmon.github.io/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/masalmon.github.io/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/masalmon.github.io/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/masalmon.github.io/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/masalmon.github.io/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/masalmon.github.io/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/masalmon.github.io/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/masalmon.github.io/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/masalmon.github.io/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/masalmon.github.io/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/masalmon.github.io/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/masalmon.github.io/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/masalmon.github.io/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/masalmon.github.io/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/masalmon.github.io/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/masalmon.github.io/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/masalmon.github.io/deployments"
  .. .. ..$ created_at       : chr "2016-03-12T16:00:18Z"
  .. .. ..$ updated_at       : chr "2016-09-24T12:34:48Z"
  .. .. ..$ pushed_at        : chr "2016-10-16T11:56:47Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/masalmon.github.io.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/masalmon.github.io.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/masalmon.github.io.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/masalmon.github.io"
  .. .. ..$ homepage         : chr "http://masalmon.github.io/"
  .. .. ..$ size             : int 4757
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi TRUE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 63962575
  .. .. ..$ name             : chr "onboarding"
  .. .. ..$ full_name        : chr "masalmon/onboarding"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/onboarding"
  .. .. ..$ description      : chr "rOpenSci Onboarding"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/onboarding"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/onboarding/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/onboarding/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/onboarding/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/onboarding/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/onboarding/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/onboarding/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/onboarding/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/onboarding/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/onboarding/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/onboarding/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/onboarding/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/onboarding/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/onboarding/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/onboarding/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/onboarding/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/onboarding/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/onboarding/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/onboarding/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/onboarding/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/onboarding/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/onboarding/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/onboarding/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/onboarding/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/onboarding/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/onboarding/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/onboarding/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/onboarding/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/onboarding/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/onboarding/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/onboarding/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/onboarding/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/onboarding/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/onboarding/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/onboarding/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/onboarding/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/onboarding/deployments"
  .. .. ..$ created_at       : chr "2016-07-22T15:09:59Z"
  .. .. ..$ updated_at       : chr "2016-07-20T14:00:31Z"
  .. .. ..$ pushed_at        : chr "2016-07-22T15:17:10Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/onboarding.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/onboarding.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/onboarding.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/onboarding"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 68
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : NULL
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 55397541
  .. .. ..$ name             : chr "openaq_figures"
  .. .. ..$ full_name        : chr "masalmon/openaq_figures"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/openaq_figures"
  .. .. ..$ description      : chr ":mask: some figures about OpenAQ growth :mask:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/openaq_figures"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/openaq_figures/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/openaq_figures/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/openaq_figures/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/openaq_figures/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/openaq_figures/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/openaq_figures/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/openaq_figures/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/openaq_figures/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/openaq_figures/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/openaq_figures/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/openaq_figures/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/openaq_figures/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/openaq_figures/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/openaq_figures/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/openaq_figures/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/openaq_figures/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/openaq_figures/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/openaq_figures/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/openaq_figures/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/openaq_figures/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/openaq_figures/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/openaq_figures/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/openaq_figures/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/openaq_figures/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/openaq_figures/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/openaq_figures/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/openaq_figures/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/openaq_figures/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/openaq_figures/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/openaq_figures/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/openaq_figures/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/openaq_figures/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/openaq_figures/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/openaq_figures/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/openaq_figures/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/openaq_figures/deployments"
  .. .. ..$ created_at       : chr "2016-04-04T09:00:14Z"
  .. .. ..$ updated_at       : chr "2016-09-08T15:06:01Z"
  .. .. ..$ pushed_at        : chr "2016-05-31T10:38:38Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/openaq_figures.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/openaq_figures.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/openaq_figures.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/openaq_figures"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 1948
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 2
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 2
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 54572308
  .. .. ..$ name             : chr "r-appveyor"
  .. .. ..$ full_name        : chr "masalmon/r-appveyor"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/r-appveyor"
  .. .. ..$ description      : chr "Tools for using R with AppVeyor (http://appveyor.com)"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/r-appveyor"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/r-appveyor/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/r-appveyor/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/r-appveyor/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/r-appveyor/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/r-appveyor/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/r-appveyor/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/r-appveyor/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/r-appveyor/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/r-appveyor/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/r-appveyor/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/r-appveyor/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/r-appveyor/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/r-appveyor/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/r-appveyor/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/r-appveyor/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/r-appveyor/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/r-appveyor/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/r-appveyor/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/r-appveyor/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/r-appveyor/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/r-appveyor/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/r-appveyor/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/r-appveyor/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/r-appveyor/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/r-appveyor/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/r-appveyor/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/r-appveyor/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/r-appveyor/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/r-appveyor/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/r-appveyor/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/r-appveyor/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/r-appveyor/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/r-appveyor/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/r-appveyor/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/r-appveyor/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/r-appveyor/deployments"
  .. .. ..$ created_at       : chr "2016-03-23T15:44:28Z"
  .. .. ..$ updated_at       : chr "2016-09-07T10:57:19Z"
  .. .. ..$ pushed_at        : chr "2016-09-07T10:57:10Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/r-appveyor.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/r-appveyor.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/r-appveyor.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/r-appveyor"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 305
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "Shell"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 71052784
  .. .. ..$ name             : chr "railways"
  .. .. ..$ full_name        : chr "masalmon/railways"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/railways"
  .. .. ..$ description      : chr "Indian Railways Data"
  .. .. ..$ fork             : logi TRUE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/railways"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/railways/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/railways/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/railways/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/railways/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/railways/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/railways/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/railways/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/railways/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/railways/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/railways/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/railways/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/railways/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/railways/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/railways/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/railways/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/railways/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/railways/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/railways/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/railways/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/railways/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/railways/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/railways/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/railways/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/railways/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/railways/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/railways/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/railways/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/railways/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/railways/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/railways/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/railways/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/railways/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/railways/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/railways/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/railways/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/railways/deployments"
  .. .. ..$ created_at       : chr "2016-10-16T13:42:37Z"
  .. .. ..$ updated_at       : chr "2016-10-16T14:58:40Z"
  .. .. ..$ pushed_at        : chr "2016-10-23T16:32:21Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/railways.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/railways.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/railways.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/railways"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 19430
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi FALSE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 50208520
  .. .. ..$ name             : chr "RealTimeVsHistoric"
  .. .. ..$ full_name        : chr "masalmon/RealTimeVsHistoric"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/RealTimeVsHistoric"
  .. .. ..$ description      : chr "RealTimeVsHistoric"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/RealTimeVsHistoric/deployments"
  .. .. ..$ created_at       : chr "2016-01-22T21:28:19Z"
  .. .. ..$ updated_at       : chr "2016-01-23T09:04:51Z"
  .. .. ..$ pushed_at        : chr "2016-01-23T17:02:43Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/RealTimeVsHistoric.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/RealTimeVsHistoric.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/RealTimeVsHistoric.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/RealTimeVsHistoric"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 9803
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 52366004
  .. .. ..$ name             : chr "rtimicropem"
  .. .. ..$ full_name        : chr "masalmon/rtimicropem"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/rtimicropem"
  .. .. ..$ description      : chr ":mask: R Package for the Reproducible Analysis of RTI MicroPEM Output Files :mask:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/rtimicropem"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/rtimicropem/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/rtimicropem/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/rtimicropem/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/rtimicropem/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/rtimicropem/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/rtimicropem/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/rtimicropem/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/rtimicropem/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/rtimicropem/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/rtimicropem/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/rtimicropem/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/rtimicropem/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/rtimicropem/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/rtimicropem/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/rtimicropem/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/rtimicropem/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/rtimicropem/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/rtimicropem/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/rtimicropem/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/rtimicropem/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/rtimicropem/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/rtimicropem/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/rtimicropem/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/rtimicropem/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/rtimicropem/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/rtimicropem/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/rtimicropem/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/rtimicropem/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/rtimicropem/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/rtimicropem/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/rtimicropem/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/rtimicropem/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/rtimicropem/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/rtimicropem/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/rtimicropem/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/rtimicropem/deployments"
  .. .. ..$ created_at       : chr "2016-02-23T14:46:49Z"
  .. .. ..$ updated_at       : chr "2016-09-28T07:31:30Z"
  .. .. ..$ pushed_at        : chr "2016-10-20T13:42:04Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/rtimicropem.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/rtimicropem.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/rtimicropem.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/rtimicropem"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 6599
  .. .. ..$ stargazers_count : int 3
  .. .. ..$ watchers_count   : int 3
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 5
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 5
  .. .. ..$ watchers         : int 3
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 69267728
  .. .. ..$ name             : chr "songlyrics"
  .. .. ..$ full_name        : chr "masalmon/songlyrics"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/songlyrics"
  .. .. ..$ description      : chr "Just a test of geoparser ability to geoparse song texts, see Julia Silge's post http://juliasilge.com/blog/Song-Lyrics-Across/"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/songlyrics"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/songlyrics/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/songlyrics/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/songlyrics/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/songlyrics/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/songlyrics/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/songlyrics/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/songlyrics/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/songlyrics/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/songlyrics/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/songlyrics/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/songlyrics/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/songlyrics/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/songlyrics/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/songlyrics/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/songlyrics/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/songlyrics/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/songlyrics/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/songlyrics/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/songlyrics/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/songlyrics/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/songlyrics/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/songlyrics/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/songlyrics/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/songlyrics/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/songlyrics/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/songlyrics/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/songlyrics/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/songlyrics/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/songlyrics/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/songlyrics/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/songlyrics/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/songlyrics/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/songlyrics/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/songlyrics/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/songlyrics/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/songlyrics/deployments"
  .. .. ..$ created_at       : chr "2016-09-26T16:05:59Z"
  .. .. ..$ updated_at       : chr "2016-09-26T17:12:56Z"
  .. .. ..$ pushed_at        : chr "2016-09-26T18:40:38Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/songlyrics.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/songlyrics.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/songlyrics.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/songlyrics"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 2429
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "HTML"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 58138218
  .. .. ..$ name             : chr "usaqmindia"
  .. .. ..$ full_name        : chr "masalmon/usaqmindia"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/usaqmindia"
  .. .. ..$ description      : chr ":mask: Data from the U.S. Embassy and Consulate air quality monitors in India :mask:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/usaqmindia"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/usaqmindia/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/usaqmindia/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/usaqmindia/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/usaqmindia/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/usaqmindia/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/usaqmindia/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/usaqmindia/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/usaqmindia/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/usaqmindia/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/usaqmindia/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/usaqmindia/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/usaqmindia/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/usaqmindia/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/usaqmindia/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/usaqmindia/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/usaqmindia/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/usaqmindia/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/usaqmindia/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/usaqmindia/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/usaqmindia/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/usaqmindia/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/usaqmindia/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/usaqmindia/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/usaqmindia/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/usaqmindia/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/usaqmindia/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/usaqmindia/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/usaqmindia/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/usaqmindia/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/usaqmindia/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/usaqmindia/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/usaqmindia/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/usaqmindia/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/usaqmindia/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/usaqmindia/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/usaqmindia/deployments"
  .. .. ..$ created_at       : chr "2016-05-05T14:48:12Z"
  .. .. ..$ updated_at       : chr "2016-09-14T22:30:33Z"
  .. .. ..$ pushed_at        : chr "2016-10-18T16:02:43Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/usaqmindia.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/usaqmindia.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/usaqmindia.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/usaqmindia"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 8265
  .. .. ..$ stargazers_count : int 5
  .. .. ..$ watchers_count   : int 5
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 5
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 46853453
  .. .. ..$ name             : chr "watchme"
  .. .. ..$ full_name        : chr "masalmon/watchme"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/watchme"
  .. .. ..$ description      : chr ":camera: R package that supports the analysis of images obtained with wearable cameras and then annotated :camera:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/watchme"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/watchme/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/watchme/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/watchme/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/watchme/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/watchme/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/watchme/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/watchme/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/watchme/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/watchme/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/watchme/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/watchme/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/watchme/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/watchme/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/watchme/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/watchme/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/watchme/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/watchme/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/watchme/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/watchme/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/watchme/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/watchme/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/watchme/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/watchme/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/watchme/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/watchme/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/watchme/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/watchme/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/watchme/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/watchme/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/watchme/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/watchme/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/watchme/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/watchme/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/watchme/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/watchme/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/watchme/deployments"
  .. .. ..$ created_at       : chr "2015-11-25T10:08:34Z"
  .. .. ..$ updated_at       : chr "2016-09-13T10:21:47Z"
  .. .. ..$ pushed_at        : chr "2016-10-06T13:22:51Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/watchme.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/watchme.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/watchme.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/watchme"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 4351
  .. .. ..$ stargazers_count : int 3
  .. .. ..$ watchers_count   : int 3
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 1
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 1
  .. .. ..$ watchers         : int 3
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 59301900
  .. .. ..$ name             : chr "who_aq_db"
  .. .. ..$ full_name        : chr "masalmon/who_aq_db"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/who_aq_db"
  .. .. ..$ description      : chr ":earth_asia: :mask: Playing with data from http://www.who.int/phe/health_topics/outdoorair/databases/cities/en/"| __truncated__
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/who_aq_db"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/who_aq_db/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/who_aq_db/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/who_aq_db/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/who_aq_db/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/who_aq_db/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/who_aq_db/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/who_aq_db/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/who_aq_db/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/who_aq_db/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/who_aq_db/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/who_aq_db/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/who_aq_db/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/who_aq_db/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/who_aq_db/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/who_aq_db/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/who_aq_db/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/who_aq_db/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/who_aq_db/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/who_aq_db/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/who_aq_db/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/who_aq_db/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/who_aq_db/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/who_aq_db/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/who_aq_db/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/who_aq_db/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/who_aq_db/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/who_aq_db/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/who_aq_db/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/who_aq_db/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/who_aq_db/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/who_aq_db/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/who_aq_db/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/who_aq_db/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/who_aq_db/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/who_aq_db/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/who_aq_db/deployments"
  .. .. ..$ created_at       : chr "2016-05-20T14:38:41Z"
  .. .. ..$ updated_at       : chr "2016-08-30T11:19:22Z"
  .. .. ..$ pushed_at        : chr "2016-05-21T09:44:58Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/who_aq_db.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/who_aq_db.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/who_aq_db.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/who_aq_db"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 1784
  .. .. ..$ stargazers_count : int 1
  .. .. ..$ watchers_count   : int 1
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 1
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 59554129
  .. .. ..$ name             : chr "worldbank_data"
  .. .. ..$ full_name        : chr "masalmon/worldbank_data"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/worldbank_data"
  .. .. ..$ description      : chr ":earth_americas: A look at http://data.worldbank.org/indicator/IP.JRN.ARTC.SC/countries :earth_americas:"
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/worldbank_data"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/worldbank_data/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/worldbank_data/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/worldbank_data/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/worldbank_data/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/worldbank_data/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/worldbank_data/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/worldbank_data/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/worldbank_data/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/worldbank_data/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/worldbank_data/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/worldbank_data/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/worldbank_data/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/worldbank_data/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/worldbank_data/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/worldbank_data/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/worldbank_data/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/worldbank_data/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/worldbank_data/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/worldbank_data/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/worldbank_data/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/worldbank_data/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/worldbank_data/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/worldbank_data/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/worldbank_data/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/worldbank_data/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/worldbank_data/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/worldbank_data/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/worldbank_data/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/worldbank_data/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/worldbank_data/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/worldbank_data/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/worldbank_data/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/worldbank_data/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/worldbank_data/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/worldbank_data/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/worldbank_data/deployments"
  .. .. ..$ created_at       : chr "2016-05-24T08:19:49Z"
  .. .. ..$ updated_at       : chr "2016-08-30T11:20:51Z"
  .. .. ..$ pushed_at        : chr "2016-05-24T08:37:08Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/worldbank_data.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/worldbank_data.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/worldbank_data.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/worldbank_data"
  .. .. ..$ homepage         : chr ""
  .. .. ..$ size             : int 343
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  .. ..$ :List of 68
  .. .. ..$ id               : int 54576272
  .. .. ..$ name             : chr "youtubedata"
  .. .. ..$ full_name        : chr "masalmon/youtubedata"
  .. .. ..$ owner            :List of 17
  .. .. .. ..$ login              : chr "masalmon"
  .. .. .. ..$ id                 : int 8360597
  .. .. .. ..$ avatar_url         : chr "https://avatars.githubusercontent.com/u/8360597?v=3"
  .. .. .. ..$ gravatar_id        : chr ""
  .. .. .. ..$ url                : chr "https://api.github.com/users/masalmon"
  .. .. .. ..$ html_url           : chr "https://github.com/masalmon"
  .. .. .. ..$ followers_url      : chr "https://api.github.com/users/masalmon/followers"
  .. .. .. ..$ following_url      : chr "https://api.github.com/users/masalmon/following{/other_user}"
  .. .. .. ..$ gists_url          : chr "https://api.github.com/users/masalmon/gists{/gist_id}"
  .. .. .. ..$ starred_url        : chr "https://api.github.com/users/masalmon/starred{/owner}{/repo}"
  .. .. .. ..$ subscriptions_url  : chr "https://api.github.com/users/masalmon/subscriptions"
  .. .. .. ..$ organizations_url  : chr "https://api.github.com/users/masalmon/orgs"
  .. .. .. ..$ repos_url          : chr "https://api.github.com/users/masalmon/repos"
  .. .. .. ..$ events_url         : chr "https://api.github.com/users/masalmon/events{/privacy}"
  .. .. .. ..$ received_events_url: chr "https://api.github.com/users/masalmon/received_events"
  .. .. .. ..$ type               : chr "User"
  .. .. .. ..$ site_admin         : logi FALSE
  .. .. ..$ private          : logi FALSE
  .. .. ..$ html_url         : chr "https://github.com/masalmon/youtubedata"
  .. .. ..$ description      : NULL
  .. .. ..$ fork             : logi FALSE
  .. .. ..$ url              : chr "https://api.github.com/repos/masalmon/youtubedata"
  .. .. ..$ forks_url        : chr "https://api.github.com/repos/masalmon/youtubedata/forks"
  .. .. ..$ keys_url         : chr "https://api.github.com/repos/masalmon/youtubedata/keys{/key_id}"
  .. .. ..$ collaborators_url: chr "https://api.github.com/repos/masalmon/youtubedata/collaborators{/collaborator}"
  .. .. ..$ teams_url        : chr "https://api.github.com/repos/masalmon/youtubedata/teams"
  .. .. ..$ hooks_url        : chr "https://api.github.com/repos/masalmon/youtubedata/hooks"
  .. .. ..$ issue_events_url : chr "https://api.github.com/repos/masalmon/youtubedata/issues/events{/number}"
  .. .. ..$ events_url       : chr "https://api.github.com/repos/masalmon/youtubedata/events"
  .. .. ..$ assignees_url    : chr "https://api.github.com/repos/masalmon/youtubedata/assignees{/user}"
  .. .. ..$ branches_url     : chr "https://api.github.com/repos/masalmon/youtubedata/branches{/branch}"
  .. .. ..$ tags_url         : chr "https://api.github.com/repos/masalmon/youtubedata/tags"
  .. .. ..$ blobs_url        : chr "https://api.github.com/repos/masalmon/youtubedata/git/blobs{/sha}"
  .. .. ..$ git_tags_url     : chr "https://api.github.com/repos/masalmon/youtubedata/git/tags{/sha}"
  .. .. ..$ git_refs_url     : chr "https://api.github.com/repos/masalmon/youtubedata/git/refs{/sha}"
  .. .. ..$ trees_url        : chr "https://api.github.com/repos/masalmon/youtubedata/git/trees{/sha}"
  .. .. ..$ statuses_url     : chr "https://api.github.com/repos/masalmon/youtubedata/statuses/{sha}"
  .. .. ..$ languages_url    : chr "https://api.github.com/repos/masalmon/youtubedata/languages"
  .. .. ..$ stargazers_url   : chr "https://api.github.com/repos/masalmon/youtubedata/stargazers"
  .. .. ..$ contributors_url : chr "https://api.github.com/repos/masalmon/youtubedata/contributors"
  .. .. ..$ subscribers_url  : chr "https://api.github.com/repos/masalmon/youtubedata/subscribers"
  .. .. ..$ subscription_url : chr "https://api.github.com/repos/masalmon/youtubedata/subscription"
  .. .. ..$ commits_url      : chr "https://api.github.com/repos/masalmon/youtubedata/commits{/sha}"
  .. .. ..$ git_commits_url  : chr "https://api.github.com/repos/masalmon/youtubedata/git/commits{/sha}"
  .. .. ..$ comments_url     : chr "https://api.github.com/repos/masalmon/youtubedata/comments{/number}"
  .. .. ..$ issue_comment_url: chr "https://api.github.com/repos/masalmon/youtubedata/issues/comments{/number}"
  .. .. ..$ contents_url     : chr "https://api.github.com/repos/masalmon/youtubedata/contents/{+path}"
  .. .. ..$ compare_url      : chr "https://api.github.com/repos/masalmon/youtubedata/compare/{base}...{head}"
  .. .. ..$ merges_url       : chr "https://api.github.com/repos/masalmon/youtubedata/merges"
  .. .. ..$ archive_url      : chr "https://api.github.com/repos/masalmon/youtubedata/{archive_format}{/ref}"
  .. .. ..$ downloads_url    : chr "https://api.github.com/repos/masalmon/youtubedata/downloads"
  .. .. ..$ issues_url       : chr "https://api.github.com/repos/masalmon/youtubedata/issues{/number}"
  .. .. ..$ pulls_url        : chr "https://api.github.com/repos/masalmon/youtubedata/pulls{/number}"
  .. .. ..$ milestones_url   : chr "https://api.github.com/repos/masalmon/youtubedata/milestones{/number}"
  .. .. ..$ notifications_url: chr "https://api.github.com/repos/masalmon/youtubedata/notifications{?since,all,participating}"
  .. .. ..$ labels_url       : chr "https://api.github.com/repos/masalmon/youtubedata/labels{/name}"
  .. .. ..$ releases_url     : chr "https://api.github.com/repos/masalmon/youtubedata/releases{/id}"
  .. .. ..$ deployments_url  : chr "https://api.github.com/repos/masalmon/youtubedata/deployments"
  .. .. ..$ created_at       : chr "2016-03-23T16:35:56Z"
  .. .. ..$ updated_at       : chr "2016-03-23T16:36:40Z"
  .. .. ..$ pushed_at        : chr "2016-03-23T16:43:46Z"
  .. .. ..$ git_url          : chr "git://github.com/masalmon/youtubedata.git"
  .. .. ..$ ssh_url          : chr "git@github.com:masalmon/youtubedata.git"
  .. .. ..$ clone_url        : chr "https://github.com/masalmon/youtubedata.git"
  .. .. ..$ svn_url          : chr "https://github.com/masalmon/youtubedata"
  .. .. ..$ homepage         : NULL
  .. .. ..$ size             : int 75
  .. .. ..$ stargazers_count : int 0
  .. .. ..$ watchers_count   : int 0
  .. .. ..$ language         : chr "R"
  .. .. ..$ has_issues       : logi TRUE
  .. .. ..$ has_downloads    : logi TRUE
  .. .. ..$ has_wiki         : logi TRUE
  .. .. ..$ has_pages        : logi FALSE
  .. .. ..$ forks_count      : int 0
  .. .. ..$ mirror_url       : NULL
  .. .. ..$ open_issues_count: int 0
  .. .. ..$ forks            : int 0
  .. .. ..$ open_issues      : int 0
  .. .. ..$ watchers         : int 0
  .. .. ..$ default_branch   : chr "master"
  • Now that was overwhelming!

  • A tibble with a column of lists

  • Lists could be named or unnamed.

    • The number of elements of a named list tend to be the same in every row.
    • Named lists tend to have the same names in every row.
    • The number of elements of an unnamed list tend to vary from row-to-row.
  • To unpack an unnamed list, use unnest_longer() and point to the column which is a list-column.

repos |> unnest_longer(json) 
# A tibble: 176 × 1
   json             
   <list>           
 1 <named list [68]>
 2 <named list [68]>
 3 <named list [68]>
 4 <named list [68]>
 5 <named list [68]>
 6 <named list [68]>
 7 <named list [68]>
 8 <named list [68]>
 9 <named list [68]>
10 <named list [68]>
# ℹ 166 more rows
  • Notice another column of lists: but this time, we have named lists.

  • Use unnest_wider().

repos |> unnest_longer(json) |>
  unnest_wider(json)
# A tibble: 176 × 68
        id name  full_name owner        private html_url description fork  url  
     <int> <chr> <chr>     <list>       <lgl>   <chr>    <chr>       <lgl> <chr>
 1  6.12e7 after gaborcsa… <named list> FALSE   https:/… Run Code i… FALSE http…
 2  4.05e7 argu… gaborcsa… <named list> FALSE   https:/… Declarativ… FALSE http…
 3  3.64e7 ask   gaborcsa… <named list> FALSE   https:/… Friendly C… FALSE http…
 4  3.49e7 base… gaborcsa… <named list> FALSE   https:/… Do we get … FALSE http…
 5  6.16e7 cite… gaborcsa… <named list> FALSE   https:/… Test R pac… TRUE  http…
 6  3.39e7 clis… gaborcsa… <named list> FALSE   https:/… Unicode sy… FALSE http…
 7  3.72e7 cmak… gaborcsa… <named list> FALSE   https:/… port of cm… TRUE  http…
 8  6.80e7 cmark gaborcsa… <named list> FALSE   https:/… CommonMark… TRUE  http…
 9  6.32e7 cond… gaborcsa… <named list> FALSE   https:/… <NA>        TRUE  http…
10  2.43e7 cray… gaborcsa… <named list> FALSE   https:/… R package … FALSE http…
# ℹ 166 more rows
# ℹ 59 more variables: forks_url <chr>, keys_url <chr>,
#   collaborators_url <chr>, teams_url <chr>, hooks_url <chr>,
#   issue_events_url <chr>, events_url <chr>, assignees_url <chr>,
#   branches_url <chr>, tags_url <chr>, blobs_url <chr>, git_tags_url <chr>,
#   git_refs_url <chr>, trees_url <chr>, statuses_url <chr>,
#   languages_url <chr>, stargazers_url <chr>, contributors_url <chr>, …
  • Give a sense of the columns.
repos |> unnest_longer(json) |>
  unnest_wider(json) |>
  names()
 [1] "id"                "name"              "full_name"        
 [4] "owner"             "private"           "html_url"         
 [7] "description"       "fork"              "url"              
[10] "forks_url"         "keys_url"          "collaborators_url"
[13] "teams_url"         "hooks_url"         "issue_events_url" 
[16] "events_url"        "assignees_url"     "branches_url"     
[19] "tags_url"          "blobs_url"         "git_tags_url"     
[22] "git_refs_url"      "trees_url"         "statuses_url"     
[25] "languages_url"     "stargazers_url"    "contributors_url" 
[28] "subscribers_url"   "subscription_url"  "commits_url"      
[31] "git_commits_url"   "comments_url"      "issue_comment_url"
[34] "contents_url"      "compare_url"       "merges_url"       
[37] "archive_url"       "downloads_url"     "issues_url"       
[40] "pulls_url"         "milestones_url"    "notifications_url"
[43] "labels_url"        "releases_url"      "deployments_url"  
[46] "created_at"        "updated_at"        "pushed_at"        
[49] "git_url"           "ssh_url"           "clone_url"        
[52] "svn_url"           "homepage"          "size"             
[55] "stargazers_count"  "watchers_count"    "language"         
[58] "has_issues"        "has_downloads"     "has_wiki"         
[61] "has_pages"         "forks_count"       "mirror_url"       
[64] "open_issues_count" "forks"             "open_issues"      
[67] "watchers"          "default_branch"   
  • We can further unpack.
repos |> unnest_longer(json) |>
  unnest_wider(json) |>
  select(where(is.list))
# A tibble: 176 × 1
   owner            
   <list>           
 1 <named list [17]>
 2 <named list [17]>
 3 <named list [17]>
 4 <named list [17]>
 5 <named list [17]>
 6 <named list [17]>
 7 <named list [17]>
 8 <named list [17]>
 9 <named list [17]>
10 <named list [17]>
# ℹ 166 more rows
repos |> unnest_longer(json) |>
  unnest_wider(json) |>
  select(where(is.list)) |>
  unnest_wider(owner)
# A tibble: 176 × 17
   login           id avatar_url        gravatar_id url   html_url followers_url
   <chr>        <int> <chr>             <chr>       <chr> <chr>    <chr>        
 1 gaborcsardi 660288 https://avatars.… ""          http… https:/… https://api.…
 2 gaborcsardi 660288 https://avatars.… ""          http… https:/… https://api.…
 3 gaborcsardi 660288 https://avatars.… ""          http… https:/… https://api.…
 4 gaborcsardi 660288 https://avatars.… ""          http… https:/… https://api.…
 5 gaborcsardi 660288 https://avatars.… ""          http… https:/… https://api.…
 6 gaborcsardi 660288 https://avatars.… ""          http… https:/… https://api.…
 7 gaborcsardi 660288 https://avatars.… ""          http… https:/… https://api.…
 8 gaborcsardi 660288 https://avatars.… ""          http… https:/… https://api.…
 9 gaborcsardi 660288 https://avatars.… ""          http… https:/… https://api.…
10 gaborcsardi 660288 https://avatars.… ""          http… https:/… https://api.…
# ℹ 166 more rows
# ℹ 10 more variables: following_url <chr>, gists_url <chr>, starred_url <chr>,
#   subscriptions_url <chr>, organizations_url <chr>, repos_url <chr>,
#   events_url <chr>, received_events_url <chr>, type <chr>, site_admin <lgl>
  • We can also answer Exercise 23.4.4, Item 1. Roughly estimate when gh_repos was created. Why can you only roughly estimate the date?
repos |> unnest_longer(json) |>
  unnest_wider(json) |>
  select(created_at)
# A tibble: 176 × 1
   created_at          
   <chr>               
 1 2016-06-14T22:33:49Z
 2 2015-08-10T18:56:23Z
 3 2015-05-28T14:04:57Z
 4 2015-05-01T21:29:10Z
 5 2016-06-21T09:29:01Z
 6 2015-04-14T02:57:39Z
 7 2015-06-11T03:10:38Z
 8 2016-09-11T23:19:49Z
 9 2016-07-12T11:31:31Z
10 2014-09-22T20:07:22Z
# ℹ 166 more rows
repos |> unnest_longer(json) |>
  unnest_wider(json) |>
  select(created_at) |>
  separate_wider_position(created_at, 
                          widths = c(ymd = 10, 10)) |>
  slice_max(order_by = ymd)
# A tibble: 1 × 1
  ymd       
  <chr>     
1 2016-10-24

Motivating example: Game of Thrones

chars <- tibble(json = got_chars)
chars
# A tibble: 30 × 1
   json             
   <list>           
 1 <named list [18]>
 2 <named list [18]>
 3 <named list [18]>
 4 <named list [18]>
 5 <named list [18]>
 6 <named list [18]>
 7 <named list [18]>
 8 <named list [18]>
 9 <named list [18]>
10 <named list [18]>
# ℹ 20 more rows
chars |> 
  unnest_wider(json)
# A tibble: 30 × 18
   url           id name  gender culture born  died  alive titles aliases father
   <chr>      <int> <chr> <chr>  <chr>   <chr> <chr> <lgl> <list> <list>  <chr> 
 1 https://w…  1022 Theo… Male   "Ironb… "In … ""    TRUE  <chr>  <chr>   ""    
 2 https://w…  1052 Tyri… Male   ""      "In … ""    TRUE  <chr>  <chr>   ""    
 3 https://w…  1074 Vict… Male   "Ironb… "In … ""    TRUE  <chr>  <chr>   ""    
 4 https://w…  1109 Will  Male   ""      ""    "In … FALSE <chr>  <chr>   ""    
 5 https://w…  1166 Areo… Male   "Norvo… "In … ""    TRUE  <chr>  <chr>   ""    
 6 https://w…  1267 Chett Male   ""      "At … "In … FALSE <chr>  <chr>   ""    
 7 https://w…  1295 Cres… Male   ""      "In … "In … FALSE <chr>  <chr>   ""    
 8 https://w…   130 Aria… Female "Dorni… "In … ""    TRUE  <chr>  <chr>   ""    
 9 https://w…  1303 Daen… Female "Valyr… "In … ""    TRUE  <chr>  <chr>   ""    
10 https://w…  1319 Davo… Male   "Weste… "In … ""    TRUE  <chr>  <chr>   ""    
# ℹ 20 more rows
# ℹ 7 more variables: mother <chr>, spouse <chr>, allegiances <list>,
#   books <list>, povBooks <list>, tvSeries <list>, playedBy <list>
chars |> 
  unnest_wider(json) |> 
  select(id, where(is.list))
# A tibble: 30 × 8
      id titles    aliases    allegiances books     povBooks  tvSeries  playedBy
   <int> <list>    <list>     <list>      <list>    <list>    <list>    <list>  
 1  1022 <chr [2]> <chr [4]>  <chr [1]>   <chr [3]> <chr [2]> <chr [6]> <chr>   
 2  1052 <chr [2]> <chr [11]> <chr [1]>   <chr [2]> <chr [4]> <chr [6]> <chr>   
 3  1074 <chr [2]> <chr [1]>  <chr [1]>   <chr [3]> <chr [2]> <chr [1]> <chr>   
 4  1109 <chr [1]> <chr [1]>  <NULL>      <chr [1]> <chr [1]> <chr [1]> <chr>   
 5  1166 <chr [1]> <chr [1]>  <chr [1]>   <chr [3]> <chr [2]> <chr [2]> <chr>   
 6  1267 <chr [1]> <chr [1]>  <NULL>      <chr [2]> <chr [1]> <chr [1]> <chr>   
 7  1295 <chr [1]> <chr [1]>  <NULL>      <chr [2]> <chr [1]> <chr [1]> <chr>   
 8   130 <chr [1]> <chr [1]>  <chr [1]>   <chr [4]> <chr [1]> <chr [1]> <chr>   
 9  1303 <chr [5]> <chr [11]> <chr [1]>   <chr [1]> <chr [4]> <chr [6]> <chr>   
10  1319 <chr [4]> <chr [5]>  <chr [2]>   <chr [1]> <chr [3]> <chr [5]> <chr>   
# ℹ 20 more rows
  • Create table of titles.
titles <- chars |> 
  unnest_wider(json) |> 
  select(id, titles) |> 
  unnest_longer(titles) |> 
  filter(titles != "")
titles
# A tibble: 52 × 2
      id titles                                                                 
   <int> <chr>                                                                  
 1  1022 Prince of Winterfell                                                   
 2  1022 Lord of the Iron Islands (by law of the green lands)                   
 3  1052 Acting Hand of the King (former)                                       
 4  1052 Master of Coin (former)                                                
 5  1074 Lord Captain of the Iron Fleet                                         
 6  1074 Master of the Iron Victory                                             
 7  1166 Captain of the Guard at Sunspear                                       
 8  1295 Maester                                                                
 9   130 Princess of Dorne                                                      
10  1303 Queen of the Andals and the Rhoynar and the First Men, Lord of the Sev…
# ℹ 42 more rows
  • Follow the steps used for titles to create similar tables for the aliases, allegiances, books, and TV series for the Game of Thrones characters.
aliases <- chars |> 
  unnest_wider(json) |> 
  select(id, aliases) |> 
  unnest_longer(aliases) |> 
  filter(aliases != "") 
allegiances <- chars |> 
  unnest_wider(json) |> 
  select(id, allegiances) |> 
  unnest_longer(allegiances) |> 
  filter(allegiances != "") 
books <- chars |> 
  unnest_wider(json) |> 
  select(id, books) |> 
  unnest_longer(books) |> 
  filter(books != "") 
tvSeries <- chars |> 
  unnest_wider(json) |> 
  select(id, tvSeries) |> 
  unnest_longer(tvSeries) |> 
  filter(tvSeries != "") 
  • Joining together: “You might expect to see this data in its own table because it would be easy to join to the characters data as needed.”
characters <- chars |> 
  unnest_wider(json) |> 
  select(id, name, gender, culture, born, died, alive)
characters
# A tibble: 30 × 7
      id name               gender culture    born                   died  alive
   <int> <chr>              <chr>  <chr>      <chr>                  <chr> <lgl>
 1  1022 Theon Greyjoy      Male   "Ironborn" "In 278 AC or 279 AC,… ""    TRUE 
 2  1052 Tyrion Lannister   Male   ""         "In 273 AC, at Caster… ""    TRUE 
 3  1074 Victarion Greyjoy  Male   "Ironborn" "In 268 AC or before,… ""    TRUE 
 4  1109 Will               Male   ""         ""                     "In … FALSE
 5  1166 Areo Hotah         Male   "Norvoshi" "In 257 AC or before,… ""    TRUE 
 6  1267 Chett              Male   ""         "At Hag's Mire"        "In … FALSE
 7  1295 Cressen            Male   ""         "In 219 AC or 220 AC"  "In … FALSE
 8   130 Arianne Martell    Female "Dornish"  "In 276 AC, at Sunspe… ""    TRUE 
 9  1303 Daenerys Targaryen Female "Valyrian" "In 284 AC, at Dragon… ""    TRUE 
10  1319 Davos Seaworth     Male   "Westeros" "In 260 AC or before,… ""    TRUE 
# ℹ 20 more rows
characters |> 
  left_join(titles, join_by(id)) |>
  left_join(aliases, join_by(id)) |>
  left_join(allegiances, join_by(id)) |>
  left_join(books, join_by(id)) |>
  left_join(tvSeries, join_by(id))
Warning in left_join(left_join(characters, titles, join_by(id)), aliases, : Detected an unexpected many-to-many relationship between `x` and `y`.
ℹ Row 1 of `x` matches multiple rows in `y`.
ℹ Row 1 of `y` matches multiple rows in `x`.
ℹ If a many-to-many relationship is expected, set `relationship =
  "many-to-many"` to silence this warning.
Warning in left_join(left_join(left_join(characters, titles, join_by(id)), : Detected an unexpected many-to-many relationship between `x` and `y`.
ℹ Row 93 of `x` matches multiple rows in `y`.
ℹ Row 1 of `y` matches multiple rows in `x`.
ℹ If a many-to-many relationship is expected, set `relationship =
  "many-to-many"` to silence this warning.
Warning in left_join(left_join(left_join(left_join(characters, titles, join_by(id)), : Detected an unexpected many-to-many relationship between `x` and `y`.
ℹ Row 1 of `x` matches multiple rows in `y`.
ℹ Row 1 of `y` matches multiple rows in `x`.
ℹ If a many-to-many relationship is expected, set `relationship =
  "many-to-many"` to silence this warning.
Warning in left_join(left_join(left_join(left_join(left_join(characters, : Detected an unexpected many-to-many relationship between `x` and `y`.
ℹ Row 1 of `x` matches multiple rows in `y`.
ℹ Row 1 of `y` matches multiple rows in `x`.
ℹ If a many-to-many relationship is expected, set `relationship =
  "many-to-many"` to silence this warning.
# A tibble: 2,507 × 12
      id name  gender culture born  died  alive titles aliases allegiances books
   <int> <chr> <chr>  <chr>   <chr> <chr> <lgl> <chr>  <chr>   <chr>       <chr>
 1  1022 Theo… Male   Ironbo… In 2… ""    TRUE  Princ… Prince… House Grey… A Ga…
 2  1022 Theo… Male   Ironbo… In 2… ""    TRUE  Princ… Prince… House Grey… A Ga…
 3  1022 Theo… Male   Ironbo… In 2… ""    TRUE  Princ… Prince… House Grey… A Ga…
 4  1022 Theo… Male   Ironbo… In 2… ""    TRUE  Princ… Prince… House Grey… A Ga…
 5  1022 Theo… Male   Ironbo… In 2… ""    TRUE  Princ… Prince… House Grey… A Ga…
 6  1022 Theo… Male   Ironbo… In 2… ""    TRUE  Princ… Prince… House Grey… A Ga…
 7  1022 Theo… Male   Ironbo… In 2… ""    TRUE  Princ… Prince… House Grey… A St…
 8  1022 Theo… Male   Ironbo… In 2… ""    TRUE  Princ… Prince… House Grey… A St…
 9  1022 Theo… Male   Ironbo… In 2… ""    TRUE  Princ… Prince… House Grey… A St…
10  1022 Theo… Male   Ironbo… In 2… ""    TRUE  Princ… Prince… House Grey… A St…
# ℹ 2,497 more rows
# ℹ 1 more variable: tvSeries <chr>
  • Exercise 23.4.4 Item 4: “Explain the following code line-by-line. Why is it interesting? Why does it work for got_chars but might not work in general?”
tibble(json = got_chars) |> 
  unnest_wider(json) |> 
  select(id, where(is.list)) |> 
  pivot_longer(
    where(is.list), 
    names_to = "name", 
    values_to = "value"
  ) |>  
  unnest_longer(value)
# A tibble: 479 × 3
      id name        value                                               
   <int> <chr>       <chr>                                               
 1  1022 titles      Prince of Winterfell                                
 2  1022 titles      Lord of the Iron Islands (by law of the green lands)
 3  1022 aliases     Prince of Fools                                     
 4  1022 aliases     Theon Turncloak                                     
 5  1022 aliases     Reek                                                
 6  1022 aliases     Theon Kinslayer                                     
 7  1022 allegiances House Greyjoy of Pyke                               
 8  1022 books       A Game of Thrones                                   
 9  1022 books       A Storm of Swords                                   
10  1022 books       A Feast for Crows                                   
# ℹ 469 more rows

JSON

  • Examples of toy JSONs from Exercise 23.5.4 Item 1: “Rectangle the df_col and df_row below. They represent the two ways of encoding a data frame in JSON.”
library(jsonlite)

Attaching package: 'jsonlite'
The following object is masked from 'package:purrr':

    flatten
json_col <- parse_json('
  {
    "x": ["a", "x", "z"],
    "y": [10, null, 3]
  }
')
json_row <- parse_json('
  [
    {"x": "a", "y": 10},
    {"x": "x", "y": null},
    {"x": "z", "y": 3}
  ]
')

df_col <- tibble(json = list(json_col)) 
df_row <- tibble(json = json_row)
df_col |> 
  unnest_wider(json) |> 
  unnest_longer(x) |> 
  unnest_longer(y)
# A tibble: 9 × 2
  x         y
  <chr> <int>
1 a        10
2 a        NA
3 a         3
4 x        10
5 x        NA
6 x         3
7 z        10
8 z        NA
9 z         3
df_row |> unnest_wider(json)
# A tibble: 3 × 2
  x         y
  <chr> <int>
1 a        10
2 x        NA
3 z         3
  • “Wilder” JSON: Try opening in a text editor and browser the Game of Thrones JSON. Below you will see a path to it.
got_chars_json()
[1] "/home/apua/R/x86_64-pc-linux-gnu-library/4.3/repurrrsive/extdata/got_chars.json"