├── README.md ├── bootstrap ├── css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── bootstrap.min.css.frog │ └── bootstrap.min.css.orig ├── img │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png └── js │ ├── bootstrap.js │ └── bootstrap.min.js ├── deploy ├── go.html ├── index.html ├── jremix.js ├── js ├── favsongs.js ├── jquery-1.6.4.min.js ├── raphael-min.js └── underscore-min.js ├── loader.html ├── ss.png └── styles.css /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.min.css.frog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/bootstrap/css/bootstrap.min.css.frog -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.min.css.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/bootstrap/css/bootstrap.min.css.orig -------------------------------------------------------------------------------- /bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /deploy: -------------------------------------------------------------------------------- 1 | s3cmd sync --acl-public * s3://static.echonest.com/autocanonizer/ 2 | -------------------------------------------------------------------------------- /go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/go.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/index.html -------------------------------------------------------------------------------- /jremix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/jremix.js -------------------------------------------------------------------------------- /js/favsongs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/js/favsongs.js -------------------------------------------------------------------------------- /js/jquery-1.6.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/js/jquery-1.6.4.min.js -------------------------------------------------------------------------------- /js/raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/js/raphael-min.js -------------------------------------------------------------------------------- /js/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/js/underscore-min.js -------------------------------------------------------------------------------- /loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/loader.html -------------------------------------------------------------------------------- /ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/ss.png -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plamere/autocanonizer/HEAD/styles.css --------------------------------------------------------------------------------