├── .all-contributorsrc ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENCE ├── README.md ├── e2e └── demo.test.ts ├── eslint.config.js ├── package.json ├── playwright.config.ts ├── pnpm-lock.yaml ├── renovate.json ├── sheets ├── alfred.md ├── bash.md ├── chocolatey.md ├── css.md ├── fish.md ├── git.md ├── grunt.md ├── homebrew.md ├── http.md ├── hyper.md ├── javascript.md ├── linux.md ├── macos.md ├── now.md ├── npm.md ├── npx.md ├── nvm.md ├── styled-components.md ├── vim.md ├── vscode.md ├── windows.md ├── winget.md ├── wsl.md ├── yarn.md └── zsh.md ├── src ├── app.css ├── app.d.ts ├── app.html ├── demo.spec.ts ├── lib │ ├── components │ │ ├── author.svelte │ │ ├── footer.svelte │ │ ├── header.svelte │ │ ├── index.ts │ │ ├── table-of-contents.svelte │ │ └── theme-select.svelte │ ├── get-sheets.ts │ ├── icons │ │ ├── alert.svelte │ │ ├── arrow.svelte │ │ ├── bluesky.svelte │ │ ├── chevron.svelte │ │ ├── git-hub.svelte │ │ ├── index.ts │ │ ├── info.svelte │ │ ├── menu.svelte │ │ ├── moon.svelte │ │ ├── search.svelte │ │ ├── sun.svelte │ │ ├── twitter.svelte │ │ └── you-tube.svelte │ ├── index.ts │ ├── info.ts │ ├── og-image-url-build.ts │ └── utils │ │ ├── get-headings.ts │ │ ├── index.ts │ │ └── update-toc-visibility.ts └── routes │ ├── +error.svelte │ ├── +layout.svelte │ ├── +page.svelte │ ├── +page.ts │ ├── [author].json │ └── +server.ts │ ├── [slug] │ ├── +page.svelte │ └── +page.ts │ ├── page.svelte.test.ts │ └── sitemap.xml │ └── +server.ts ├── static ├── favicon.png ├── profile-pic.png └── robots.txt ├── svelte.config.js ├── tsconfig.json ├── vite.config.ts └── vitest-setup-client.ts /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/README.md -------------------------------------------------------------------------------- /e2e/demo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/e2e/demo.test.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["config:base"] 3 | } 4 | -------------------------------------------------------------------------------- /sheets/alfred.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/alfred.md -------------------------------------------------------------------------------- /sheets/bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/bash.md -------------------------------------------------------------------------------- /sheets/chocolatey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/chocolatey.md -------------------------------------------------------------------------------- /sheets/css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/css.md -------------------------------------------------------------------------------- /sheets/fish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/fish.md -------------------------------------------------------------------------------- /sheets/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/git.md -------------------------------------------------------------------------------- /sheets/grunt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/grunt.md -------------------------------------------------------------------------------- /sheets/homebrew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/homebrew.md -------------------------------------------------------------------------------- /sheets/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/http.md -------------------------------------------------------------------------------- /sheets/hyper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/hyper.md -------------------------------------------------------------------------------- /sheets/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/javascript.md -------------------------------------------------------------------------------- /sheets/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/linux.md -------------------------------------------------------------------------------- /sheets/macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/macos.md -------------------------------------------------------------------------------- /sheets/now.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/now.md -------------------------------------------------------------------------------- /sheets/npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/npm.md -------------------------------------------------------------------------------- /sheets/npx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/npx.md -------------------------------------------------------------------------------- /sheets/nvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/nvm.md -------------------------------------------------------------------------------- /sheets/styled-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/styled-components.md -------------------------------------------------------------------------------- /sheets/vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/vim.md -------------------------------------------------------------------------------- /sheets/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/vscode.md -------------------------------------------------------------------------------- /sheets/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/windows.md -------------------------------------------------------------------------------- /sheets/winget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/winget.md -------------------------------------------------------------------------------- /sheets/wsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/wsl.md -------------------------------------------------------------------------------- /sheets/yarn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/yarn.md -------------------------------------------------------------------------------- /sheets/zsh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/sheets/zsh.md -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/app.html -------------------------------------------------------------------------------- /src/demo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/demo.spec.ts -------------------------------------------------------------------------------- /src/lib/components/author.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/components/author.svelte -------------------------------------------------------------------------------- /src/lib/components/footer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/components/footer.svelte -------------------------------------------------------------------------------- /src/lib/components/header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/components/header.svelte -------------------------------------------------------------------------------- /src/lib/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/components/index.ts -------------------------------------------------------------------------------- /src/lib/components/table-of-contents.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/components/table-of-contents.svelte -------------------------------------------------------------------------------- /src/lib/components/theme-select.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/components/theme-select.svelte -------------------------------------------------------------------------------- /src/lib/get-sheets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/get-sheets.ts -------------------------------------------------------------------------------- /src/lib/icons/alert.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/icons/alert.svelte -------------------------------------------------------------------------------- /src/lib/icons/arrow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/icons/arrow.svelte -------------------------------------------------------------------------------- /src/lib/icons/bluesky.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/icons/bluesky.svelte -------------------------------------------------------------------------------- /src/lib/icons/chevron.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/icons/chevron.svelte -------------------------------------------------------------------------------- /src/lib/icons/git-hub.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/icons/git-hub.svelte -------------------------------------------------------------------------------- /src/lib/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/icons/index.ts -------------------------------------------------------------------------------- /src/lib/icons/info.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/icons/info.svelte -------------------------------------------------------------------------------- /src/lib/icons/menu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/icons/menu.svelte -------------------------------------------------------------------------------- /src/lib/icons/moon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/icons/moon.svelte -------------------------------------------------------------------------------- /src/lib/icons/search.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/icons/search.svelte -------------------------------------------------------------------------------- /src/lib/icons/sun.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/icons/sun.svelte -------------------------------------------------------------------------------- /src/lib/icons/twitter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/icons/twitter.svelte -------------------------------------------------------------------------------- /src/lib/icons/you-tube.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/icons/you-tube.svelte -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/info.ts -------------------------------------------------------------------------------- /src/lib/og-image-url-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/og-image-url-build.ts -------------------------------------------------------------------------------- /src/lib/utils/get-headings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/utils/get-headings.ts -------------------------------------------------------------------------------- /src/lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/utils/index.ts -------------------------------------------------------------------------------- /src/lib/utils/update-toc-visibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/lib/utils/update-toc-visibility.ts -------------------------------------------------------------------------------- /src/routes/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/routes/+error.svelte -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/routes/+page.ts -------------------------------------------------------------------------------- /src/routes/[author].json/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/routes/[author].json/+server.ts -------------------------------------------------------------------------------- /src/routes/[slug]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/routes/[slug]/+page.svelte -------------------------------------------------------------------------------- /src/routes/[slug]/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/routes/[slug]/+page.ts -------------------------------------------------------------------------------- /src/routes/page.svelte.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/routes/page.svelte.test.ts -------------------------------------------------------------------------------- /src/routes/sitemap.xml/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/src/routes/sitemap.xml/+server.ts -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/profile-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/static/profile-pic.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/static/robots.txt -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest-setup-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spences10/cheat-sheets/HEAD/vitest-setup-client.ts --------------------------------------------------------------------------------