├── .github └── workflows │ └── linkcheck.yml ├── AUTHORS.md ├── CNAME ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md └── docs ├── CNAME ├── _config.yaml ├── financial-aid.md └── index.md /.github/workflows/linkcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxsasha/lessobviouschecklist/HEAD/.github/workflows/linkcheck.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxsasha/lessobviouschecklist/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | lessobvious.cc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxsasha/lessobviouschecklist/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxsasha/lessobviouschecklist/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxsasha/lessobviouschecklist/HEAD/README.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | lessobvious.cc -------------------------------------------------------------------------------- /docs/_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxsasha/lessobviouschecklist/HEAD/docs/_config.yaml -------------------------------------------------------------------------------- /docs/financial-aid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxsasha/lessobviouschecklist/HEAD/docs/financial-aid.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxsasha/lessobviouschecklist/HEAD/docs/index.md --------------------------------------------------------------------------------