├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── R ├── .gitignore ├── favorites.R ├── html.R ├── search.R ├── sysdata.rda └── timeline.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── docs ├── CNAME ├── LICENSE.html ├── authors.html ├── docsearch.css ├── docsearch.js ├── extra.css ├── favicon.ico ├── index.html ├── inst │ └── tools │ │ └── readme │ │ ├── home.gif │ │ ├── search.gif │ │ └── user.gif ├── link.svg ├── logo.png ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── figures │ │ └── logo.png │ ├── html_tweets.html │ ├── index.html │ ├── view_favorites.html │ ├── view_search.html │ └── view_timeline.html └── sitemap.xml ├── inst ├── rstudio │ └── addins.dcf ├── scripts │ ├── favs-addin.R │ ├── home-addin.R │ ├── search-addin.R │ └── user-addin.R └── tools │ └── readme │ ├── home.gif │ ├── search.gif │ └── user.gif ├── man ├── figures │ └── logo.png ├── html_tweets.Rd ├── view_favorites.Rd ├── view_search.Rd └── view_timeline.Rd ├── pkgdown └── extra.css └── viewtweets.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/.gitignore: -------------------------------------------------------------------------------- 1 | make.R 2 | -------------------------------------------------------------------------------- /R/favorites.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/R/favorites.R -------------------------------------------------------------------------------- /R/html.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/R/html.R -------------------------------------------------------------------------------- /R/search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/R/search.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/timeline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/R/timeline.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | viewtweets.mikewk.com -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/extra.css -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/inst/tools/readme/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/inst/tools/readme/home.gif -------------------------------------------------------------------------------- /docs/inst/tools/readme/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/inst/tools/readme/search.gif -------------------------------------------------------------------------------- /docs/inst/tools/readme/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/inst/tools/readme/user.gif -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/reference/figures/logo.png -------------------------------------------------------------------------------- /docs/reference/html_tweets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/reference/html_tweets.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/view_favorites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/reference/view_favorites.html -------------------------------------------------------------------------------- /docs/reference/view_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/reference/view_search.html -------------------------------------------------------------------------------- /docs/reference/view_timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/reference/view_timeline.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /inst/scripts/favs-addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/inst/scripts/favs-addin.R -------------------------------------------------------------------------------- /inst/scripts/home-addin.R: -------------------------------------------------------------------------------- 1 | viewtweets:::view_timeline(user = NULL) 2 | -------------------------------------------------------------------------------- /inst/scripts/search-addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/inst/scripts/search-addin.R -------------------------------------------------------------------------------- /inst/scripts/user-addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/inst/scripts/user-addin.R -------------------------------------------------------------------------------- /inst/tools/readme/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/inst/tools/readme/home.gif -------------------------------------------------------------------------------- /inst/tools/readme/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/inst/tools/readme/search.gif -------------------------------------------------------------------------------- /inst/tools/readme/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/inst/tools/readme/user.gif -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/html_tweets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/man/html_tweets.Rd -------------------------------------------------------------------------------- /man/view_favorites.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/man/view_favorites.Rd -------------------------------------------------------------------------------- /man/view_search.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/man/view_search.Rd -------------------------------------------------------------------------------- /man/view_timeline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/man/view_timeline.Rd -------------------------------------------------------------------------------- /pkgdown/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/pkgdown/extra.css -------------------------------------------------------------------------------- /viewtweets.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/viewtweets/HEAD/viewtweets.Rproj --------------------------------------------------------------------------------