├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── app ├── .jshintrc ├── application.js ├── modules │ ├── base.js │ ├── search.js │ ├── startup.js │ └── utils.js ├── pages │ └── index.html └── templates │ ├── metadata-search.html │ ├── metadata-valuation.html │ ├── panel-startup-full.html │ ├── panel-startup-list-item.html │ ├── panel-startup-list.html │ ├── search-container.html │ ├── single-search-container.html │ ├── single-search-item.html │ ├── single-tag-count.html │ └── tag-count-list.html ├── assets ├── css │ ├── colorbox.css │ ├── images │ │ ├── border1.png │ │ ├── border2.png │ │ ├── loading.gif │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── jquery-ui-1.8.16.custom.css │ ├── jquery-ui-1.8.16.custom_default.css │ ├── satisfy.woff │ └── style.css ├── img │ ├── .gitignore │ ├── ajax-loader.gif │ ├── follow_twitter_gray.png │ ├── loader.grey.gif │ ├── logo_38pt.gif │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ ├── ui-bg_flat_10_000000_40x100.png │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_228ef1_256x240.png │ ├── ui-icons_ef8c08_256x240.png │ ├── ui-icons_ffd27a_256x240.png │ └── ui-icons_ffffff_256x240.png ├── js │ ├── jquery-sparklines.js │ ├── jquery-ui-1.8.16.custom.min.js │ ├── jquery.colorbox-min.js │ └── libs │ │ ├── backbone.js │ │ ├── jquery.js │ │ └── underscore.js ├── mockups.bmml ├── mockups.png ├── mockups_2.png ├── search_header.jpg └── sparkline.png ├── favicon.ico ├── package.json ├── readme.md ├── tasks ├── contrib-clean.js ├── contrib-concat.js ├── contrib-connect.js ├── contrib-copy.js ├── contrib-jshint.js ├── contrib-jst.js ├── contrib-uglify.js ├── contrib-watch.js └── s3.js └── test ├── index.html ├── unit ├── .jshintrc └── core.js └── vendor ├── jslitmus.js ├── qunit.css └── qunit.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | prod/ 4 | credentials.json 5 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /app/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/.jshintrc -------------------------------------------------------------------------------- /app/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/application.js -------------------------------------------------------------------------------- /app/modules/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/modules/base.js -------------------------------------------------------------------------------- /app/modules/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/modules/search.js -------------------------------------------------------------------------------- /app/modules/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/modules/startup.js -------------------------------------------------------------------------------- /app/modules/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/modules/utils.js -------------------------------------------------------------------------------- /app/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/pages/index.html -------------------------------------------------------------------------------- /app/templates/metadata-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/templates/metadata-search.html -------------------------------------------------------------------------------- /app/templates/metadata-valuation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/templates/metadata-valuation.html -------------------------------------------------------------------------------- /app/templates/panel-startup-full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/templates/panel-startup-full.html -------------------------------------------------------------------------------- /app/templates/panel-startup-list-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/templates/panel-startup-list-item.html -------------------------------------------------------------------------------- /app/templates/panel-startup-list.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/search-container.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/single-search-container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/templates/single-search-container.html -------------------------------------------------------------------------------- /app/templates/single-search-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/templates/single-search-item.html -------------------------------------------------------------------------------- /app/templates/single-tag-count.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/templates/single-tag-count.html -------------------------------------------------------------------------------- /app/templates/tag-count-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/app/templates/tag-count-list.html -------------------------------------------------------------------------------- /assets/css/colorbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/colorbox.css -------------------------------------------------------------------------------- /assets/css/images/border1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/border1.png -------------------------------------------------------------------------------- /assets/css/images/border2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/border2.png -------------------------------------------------------------------------------- /assets/css/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/loading.gif -------------------------------------------------------------------------------- /assets/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /assets/css/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /assets/css/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /assets/css/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /assets/css/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /assets/css/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /assets/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /assets/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /assets/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /assets/css/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /assets/css/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /assets/css/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /assets/css/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /assets/css/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /assets/css/jquery-ui-1.8.16.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/jquery-ui-1.8.16.custom.css -------------------------------------------------------------------------------- /assets/css/jquery-ui-1.8.16.custom_default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/jquery-ui-1.8.16.custom_default.css -------------------------------------------------------------------------------- /assets/css/satisfy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/satisfy.woff -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/img/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | 3 | -------------------------------------------------------------------------------- /assets/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ajax-loader.gif -------------------------------------------------------------------------------- /assets/img/follow_twitter_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/follow_twitter_gray.png -------------------------------------------------------------------------------- /assets/img/loader.grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/loader.grey.gif -------------------------------------------------------------------------------- /assets/img/logo_38pt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/logo_38pt.gif -------------------------------------------------------------------------------- /assets/img/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /assets/img/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /assets/img/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /assets/img/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /assets/img/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /assets/img/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /assets/img/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /assets/img/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /assets/img/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /assets/img/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /assets/img/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /assets/img/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /assets/img/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /assets/img/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/img/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /assets/js/jquery-sparklines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/js/jquery-sparklines.js -------------------------------------------------------------------------------- /assets/js/jquery-ui-1.8.16.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/js/jquery-ui-1.8.16.custom.min.js -------------------------------------------------------------------------------- /assets/js/jquery.colorbox-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/js/jquery.colorbox-min.js -------------------------------------------------------------------------------- /assets/js/libs/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/js/libs/backbone.js -------------------------------------------------------------------------------- /assets/js/libs/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/js/libs/jquery.js -------------------------------------------------------------------------------- /assets/js/libs/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/js/libs/underscore.js -------------------------------------------------------------------------------- /assets/mockups.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/mockups.bmml -------------------------------------------------------------------------------- /assets/mockups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/mockups.png -------------------------------------------------------------------------------- /assets/mockups_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/mockups_2.png -------------------------------------------------------------------------------- /assets/search_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/search_header.jpg -------------------------------------------------------------------------------- /assets/sparkline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/assets/sparkline.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/favicon.ico -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/readme.md -------------------------------------------------------------------------------- /tasks/contrib-clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/tasks/contrib-clean.js -------------------------------------------------------------------------------- /tasks/contrib-concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/tasks/contrib-concat.js -------------------------------------------------------------------------------- /tasks/contrib-connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/tasks/contrib-connect.js -------------------------------------------------------------------------------- /tasks/contrib-copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/tasks/contrib-copy.js -------------------------------------------------------------------------------- /tasks/contrib-jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/tasks/contrib-jshint.js -------------------------------------------------------------------------------- /tasks/contrib-jst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/tasks/contrib-jst.js -------------------------------------------------------------------------------- /tasks/contrib-uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/tasks/contrib-uglify.js -------------------------------------------------------------------------------- /tasks/contrib-watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/tasks/contrib-watch.js -------------------------------------------------------------------------------- /tasks/s3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/tasks/s3.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/test/index.html -------------------------------------------------------------------------------- /test/unit/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/test/unit/.jshintrc -------------------------------------------------------------------------------- /test/unit/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/test/unit/core.js -------------------------------------------------------------------------------- /test/vendor/jslitmus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/test/vendor/jslitmus.js -------------------------------------------------------------------------------- /test/vendor/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/test/vendor/qunit.css -------------------------------------------------------------------------------- /test/vendor/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bocoup/StartupDataTrends/HEAD/test/vendor/qunit.js --------------------------------------------------------------------------------