├── .github └── workflows │ └── gh-pages.yml ├── .gitignore ├── .gitmodules ├── README.md ├── archetypes └── default.md ├── config.toml ├── content ├── _index.md └── docs │ ├── Computer Science │ ├── _index.md │ └── hash-aggregate.md │ ├── Recsys │ ├── _index.md │ ├── jaccard-similarity.md │ ├── minhash.md │ └── precision-and-recall.md │ ├── about.md │ ├── languages │ ├── Java │ │ ├── _index.md │ │ └── arrays.md │ ├── PHP │ │ ├── _index.md │ │ └── arrays.md │ ├── SQL │ │ ├── _index.md │ │ └── legible-sql.md │ ├── _index.md │ ├── python │ │ ├── _index.md │ │ ├── strptime.md │ │ └── venv.md │ └── scala │ │ ├── _index.md │ │ └── build-sbt.md │ ├── platforms │ ├── Kubernetes.md │ ├── _index.md │ ├── airflow.md │ ├── cloud │ │ ├── AWS │ │ │ ├── _index.md │ │ │ └── lambdas.md │ │ └── _index.md │ └── spark │ │ ├── _index.md │ │ ├── create-data-python.md │ │ └── testing-dataframes.md │ └── what-is-ml.md ├── public ├── categories │ └── index.xml ├── index.xml ├── sitemap.xml └── tags │ └── index.xml ├── resources └── _gen │ └── assets │ └── scss │ ├── book.scss_50fc8c04e12a2f59027287995557ceff.content │ └── book.scss_50fc8c04e12a2f59027287995557ceff.json └── static ├── CNAME ├── images ├── minhash1.png ├── minhash2.png ├── minhash3.png ├── minhash4.png ├── minhash5.png ├── minhash6.png ├── precision.png ├── recall.png ├── results.png └── snakesearch.png └── logo.png /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/config.toml -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/docs/Computer Science/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | bookCollapseSection: true 3 | weight: 10 4 | --- 5 | -------------------------------------------------------------------------------- /content/docs/Computer Science/hash-aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/Computer Science/hash-aggregate.md -------------------------------------------------------------------------------- /content/docs/Recsys/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/Recsys/_index.md -------------------------------------------------------------------------------- /content/docs/Recsys/jaccard-similarity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/Recsys/jaccard-similarity.md -------------------------------------------------------------------------------- /content/docs/Recsys/minhash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/Recsys/minhash.md -------------------------------------------------------------------------------- /content/docs/Recsys/precision-and-recall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/Recsys/precision-and-recall.md -------------------------------------------------------------------------------- /content/docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/about.md -------------------------------------------------------------------------------- /content/docs/languages/Java/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/languages/Java/_index.md -------------------------------------------------------------------------------- /content/docs/languages/Java/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/languages/Java/arrays.md -------------------------------------------------------------------------------- /content/docs/languages/PHP/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/languages/PHP/_index.md -------------------------------------------------------------------------------- /content/docs/languages/PHP/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/languages/PHP/arrays.md -------------------------------------------------------------------------------- /content/docs/languages/SQL/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/languages/SQL/_index.md -------------------------------------------------------------------------------- /content/docs/languages/SQL/legible-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/languages/SQL/legible-sql.md -------------------------------------------------------------------------------- /content/docs/languages/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 1 3 | bookFlatSection: true 4 | title: "Languages" 5 | --- 6 | 7 | 8 | ## HI -------------------------------------------------------------------------------- /content/docs/languages/python/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 10 3 | bookCollapseSection: true 4 | --- 5 | 6 | # My first love 7 | 8 | -------------------------------------------------------------------------------- /content/docs/languages/python/strptime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/languages/python/strptime.md -------------------------------------------------------------------------------- /content/docs/languages/python/venv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/languages/python/venv.md -------------------------------------------------------------------------------- /content/docs/languages/scala/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 10 3 | bookCollapseSection: true 4 | --- 5 | 6 | # Scala! -------------------------------------------------------------------------------- /content/docs/languages/scala/build-sbt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/languages/scala/build-sbt.md -------------------------------------------------------------------------------- /content/docs/platforms/Kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/platforms/Kubernetes.md -------------------------------------------------------------------------------- /content/docs/platforms/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/platforms/_index.md -------------------------------------------------------------------------------- /content/docs/platforms/airflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/platforms/airflow.md -------------------------------------------------------------------------------- /content/docs/platforms/cloud/AWS/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/platforms/cloud/AWS/_index.md -------------------------------------------------------------------------------- /content/docs/platforms/cloud/AWS/lambdas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/platforms/cloud/AWS/lambdas.md -------------------------------------------------------------------------------- /content/docs/platforms/cloud/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/platforms/cloud/_index.md -------------------------------------------------------------------------------- /content/docs/platforms/spark/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | bookCollapseSection: true 3 | --- 4 | -------------------------------------------------------------------------------- /content/docs/platforms/spark/create-data-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/platforms/spark/create-data-python.md -------------------------------------------------------------------------------- /content/docs/platforms/spark/testing-dataframes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/platforms/spark/testing-dataframes.md -------------------------------------------------------------------------------- /content/docs/what-is-ml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/content/docs/what-is-ml.md -------------------------------------------------------------------------------- /public/categories/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/public/categories/index.xml -------------------------------------------------------------------------------- /public/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/public/index.xml -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/tags/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/public/tags/index.xml -------------------------------------------------------------------------------- /resources/_gen/assets/scss/book.scss_50fc8c04e12a2f59027287995557ceff.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/resources/_gen/assets/scss/book.scss_50fc8c04e12a2f59027287995557ceff.content -------------------------------------------------------------------------------- /resources/_gen/assets/scss/book.scss_50fc8c04e12a2f59027287995557ceff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/resources/_gen/assets/scss/book.scss_50fc8c04e12a2f59027287995557ceff.json -------------------------------------------------------------------------------- /static/CNAME: -------------------------------------------------------------------------------- 1 | http://boringml.com 2 | -------------------------------------------------------------------------------- /static/images/minhash1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/static/images/minhash1.png -------------------------------------------------------------------------------- /static/images/minhash2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/static/images/minhash2.png -------------------------------------------------------------------------------- /static/images/minhash3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/static/images/minhash3.png -------------------------------------------------------------------------------- /static/images/minhash4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/static/images/minhash4.png -------------------------------------------------------------------------------- /static/images/minhash5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/static/images/minhash5.png -------------------------------------------------------------------------------- /static/images/minhash6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/static/images/minhash6.png -------------------------------------------------------------------------------- /static/images/precision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/static/images/precision.png -------------------------------------------------------------------------------- /static/images/recall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/static/images/recall.png -------------------------------------------------------------------------------- /static/images/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/static/images/results.png -------------------------------------------------------------------------------- /static/images/snakesearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/static/images/snakesearch.png -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veekaybee/boringml/HEAD/static/logo.png --------------------------------------------------------------------------------