├── .circleci └── config.yml ├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── README.md ├── assets └── assets.go ├── command ├── apiroutes │ ├── apiroutes.go │ ├── helper.go │ └── models.go ├── deletedfiles │ ├── deleted.go │ ├── helper.go │ └── models.go ├── directories │ ├── directories.go │ ├── helper.go │ └── models.go ├── parameters │ ├── helper.go │ ├── models.go │ └── parameters.go ├── routes │ ├── helper.go │ ├── models.go │ └── routes.go ├── subdomains │ ├── helper.go │ ├── models.go │ └── subdomains.go ├── technologies │ ├── helper.go │ ├── models.go │ └── technologies.go └── wordswithext │ ├── helper.go │ ├── models.go │ └── words.go ├── commands.go ├── data ├── filters │ ├── numerical-parameters.txt │ └── string-parameters.txt └── sql │ ├── github │ ├── deleted-files-test.sql │ ├── deleted-files.sql │ ├── nodejs-routes-test.sql │ ├── nodejs-routes.sql │ ├── rails-routes-test.sql │ ├── rails-routes.sql │ ├── tomcat-routes-test.sql │ ├── tomcat-routes.sql │ └── words-with-ext.sql │ ├── hackernews │ └── subdomains.sql │ └── http-archive │ ├── apiroutes.sql │ ├── directories.sql │ ├── parameters.sql │ ├── subdomains.sql │ ├── technologies.sql │ └── words-with-ext.sql ├── glide.lock ├── glide.yaml ├── log └── log.go ├── main.go ├── noisey └── noisey.go └── version.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/README.md -------------------------------------------------------------------------------- /assets/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/assets/assets.go -------------------------------------------------------------------------------- /command/apiroutes/apiroutes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/apiroutes/apiroutes.go -------------------------------------------------------------------------------- /command/apiroutes/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/apiroutes/helper.go -------------------------------------------------------------------------------- /command/apiroutes/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/apiroutes/models.go -------------------------------------------------------------------------------- /command/deletedfiles/deleted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/deletedfiles/deleted.go -------------------------------------------------------------------------------- /command/deletedfiles/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/deletedfiles/helper.go -------------------------------------------------------------------------------- /command/deletedfiles/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/deletedfiles/models.go -------------------------------------------------------------------------------- /command/directories/directories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/directories/directories.go -------------------------------------------------------------------------------- /command/directories/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/directories/helper.go -------------------------------------------------------------------------------- /command/directories/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/directories/models.go -------------------------------------------------------------------------------- /command/parameters/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/parameters/helper.go -------------------------------------------------------------------------------- /command/parameters/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/parameters/models.go -------------------------------------------------------------------------------- /command/parameters/parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/parameters/parameters.go -------------------------------------------------------------------------------- /command/routes/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/routes/helper.go -------------------------------------------------------------------------------- /command/routes/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/routes/models.go -------------------------------------------------------------------------------- /command/routes/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/routes/routes.go -------------------------------------------------------------------------------- /command/subdomains/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/subdomains/helper.go -------------------------------------------------------------------------------- /command/subdomains/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/subdomains/models.go -------------------------------------------------------------------------------- /command/subdomains/subdomains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/subdomains/subdomains.go -------------------------------------------------------------------------------- /command/technologies/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/technologies/helper.go -------------------------------------------------------------------------------- /command/technologies/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/technologies/models.go -------------------------------------------------------------------------------- /command/technologies/technologies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/technologies/technologies.go -------------------------------------------------------------------------------- /command/wordswithext/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/wordswithext/helper.go -------------------------------------------------------------------------------- /command/wordswithext/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/wordswithext/models.go -------------------------------------------------------------------------------- /command/wordswithext/words.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/command/wordswithext/words.go -------------------------------------------------------------------------------- /commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/commands.go -------------------------------------------------------------------------------- /data/filters/numerical-parameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/filters/numerical-parameters.txt -------------------------------------------------------------------------------- /data/filters/string-parameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/filters/string-parameters.txt -------------------------------------------------------------------------------- /data/sql/github/deleted-files-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/github/deleted-files-test.sql -------------------------------------------------------------------------------- /data/sql/github/deleted-files.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/github/deleted-files.sql -------------------------------------------------------------------------------- /data/sql/github/nodejs-routes-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/github/nodejs-routes-test.sql -------------------------------------------------------------------------------- /data/sql/github/nodejs-routes.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/sql/github/rails-routes-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/github/rails-routes-test.sql -------------------------------------------------------------------------------- /data/sql/github/rails-routes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/github/rails-routes.sql -------------------------------------------------------------------------------- /data/sql/github/tomcat-routes-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/github/tomcat-routes-test.sql -------------------------------------------------------------------------------- /data/sql/github/tomcat-routes.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/sql/github/words-with-ext.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/github/words-with-ext.sql -------------------------------------------------------------------------------- /data/sql/hackernews/subdomains.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/hackernews/subdomains.sql -------------------------------------------------------------------------------- /data/sql/http-archive/apiroutes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/http-archive/apiroutes.sql -------------------------------------------------------------------------------- /data/sql/http-archive/directories.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/http-archive/directories.sql -------------------------------------------------------------------------------- /data/sql/http-archive/parameters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/http-archive/parameters.sql -------------------------------------------------------------------------------- /data/sql/http-archive/subdomains.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/http-archive/subdomains.sql -------------------------------------------------------------------------------- /data/sql/http-archive/technologies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/http-archive/technologies.sql -------------------------------------------------------------------------------- /data/sql/http-archive/words-with-ext.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/data/sql/http-archive/words-with-ext.sql -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/glide.yaml -------------------------------------------------------------------------------- /log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/log/log.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/main.go -------------------------------------------------------------------------------- /noisey/noisey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/noisey/noisey.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assetnote/commonspeak2/HEAD/version.go --------------------------------------------------------------------------------