gitextract_2w4rwpo4/ ├── .Rbuildignore ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── Bug_report.md │ │ ├── Feature_request.md │ │ ├── Question.md │ │ └── Tips.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── stale.yml │ └── weekly-digest.yml ├── .gitignore ├── .travis.yml ├── CRAN-RELEASE ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R/ │ ├── carbon.R │ ├── carbon_fields.R │ ├── carbonate.R │ ├── helpers.R │ ├── selenium_functions.R │ ├── set_get_functions.R │ └── uri_functions.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── carbonate.Rproj ├── codecov.yml ├── cran-comments.md ├── docs/ │ ├── 404.html │ ├── LICENSE-text.html │ ├── PULL_REQUEST_TEMPLATE.html │ ├── articles/ │ │ ├── index.html │ │ └── tests_and_coverage.html │ ├── authors.html │ ├── bootstrap-toc.css │ ├── bootstrap-toc.js │ ├── docsearch.css │ ├── docsearch.js │ ├── index.html │ ├── pkgdown.css │ ├── pkgdown.js │ ├── pkgdown.yml │ ├── reference/ │ │ ├── browse.html │ │ ├── carbon.html │ │ ├── carbon_chrome.html │ │ ├── carbon_fields.html │ │ ├── carbon_gecko.html │ │ ├── carbon_selenium.html │ │ ├── carbonate.html │ │ ├── encode.html │ │ ├── get_carbon.html │ │ ├── index.html │ │ ├── options.html │ │ ├── reprex_to_carbon_browser.html │ │ ├── rtweet.html │ │ ├── set_carbon.html │ │ ├── tiny.html │ │ ├── tinyurl.html │ │ └── uri.html │ └── sitemap.xml ├── hextools/ │ └── create_hex.R ├── inst/ │ └── rstudio/ │ └── addins.dcf ├── man/ │ ├── browse.Rd │ ├── carbon.Rd │ ├── carbon_chrome.Rd │ ├── carbon_fields.Rd │ ├── carbon_gecko.Rd │ ├── carbon_selenium.Rd │ ├── carbonate.Rd │ ├── encode.Rd │ ├── get_carbon.Rd │ ├── options.Rd │ ├── rtweet.Rd │ ├── set_carbon.Rd │ ├── tiny.Rd │ ├── tinyurl.Rd │ └── uri.Rd ├── tests/ │ ├── README.md │ ├── testthat/ │ │ ├── helpers.R │ │ ├── test-port.R │ │ ├── test-set.R │ │ ├── test-uri.R │ │ └── test-yml.R │ └── testthat.R └── vignettes/ ├── .gitignore └── tests_and_coverage.Rmd