├── .gitignore ├── .httr-oauth ├── 00_Scripts ├── cards_functions.R ├── git_functions.R ├── helper_functions.R └── info_card.R ├── README.md ├── about.txt ├── app.R ├── git_discoverer_app.Rproj ├── shiny-run.R ├── text └── about.md └── www ├── GitDiscoverer.jpg ├── github.jpg ├── google-analytics.html ├── popular_projects.gif ├── styles.css ├── trending_developers.gif └── trending_repos.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/.gitignore -------------------------------------------------------------------------------- /.httr-oauth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/.httr-oauth -------------------------------------------------------------------------------- /00_Scripts/cards_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/00_Scripts/cards_functions.R -------------------------------------------------------------------------------- /00_Scripts/git_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/00_Scripts/git_functions.R -------------------------------------------------------------------------------- /00_Scripts/helper_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/00_Scripts/helper_functions.R -------------------------------------------------------------------------------- /00_Scripts/info_card.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/00_Scripts/info_card.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/README.md -------------------------------------------------------------------------------- /about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/about.txt -------------------------------------------------------------------------------- /app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/app.R -------------------------------------------------------------------------------- /git_discoverer_app.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/git_discoverer_app.Rproj -------------------------------------------------------------------------------- /shiny-run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/shiny-run.R -------------------------------------------------------------------------------- /text/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/text/about.md -------------------------------------------------------------------------------- /www/GitDiscoverer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/www/GitDiscoverer.jpg -------------------------------------------------------------------------------- /www/github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/www/github.jpg -------------------------------------------------------------------------------- /www/google-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/www/google-analytics.html -------------------------------------------------------------------------------- /www/popular_projects.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/www/popular_projects.gif -------------------------------------------------------------------------------- /www/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/www/styles.css -------------------------------------------------------------------------------- /www/trending_developers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/www/trending_developers.gif -------------------------------------------------------------------------------- /www/trending_repos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajkstats/git_discoverer_app/HEAD/www/trending_repos.gif --------------------------------------------------------------------------------