├── .vscode ├── settings.json └── spellright.dict ├── PDFs └── c-cheatsheet-1.0.pdf ├── README.md ├── _config.yml ├── frontend ├── css-cheatsheet.md └── html-cheatsheet.md ├── images └── logo.png ├── index.md ├── languages ├── c-cheatsheet.md ├── java-cheatsheet.md └── python-cheatsheet.md └── logic-gates.md /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-kiratsata/brocode-cheatsheets/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/spellright.dict: -------------------------------------------------------------------------------- 1 | Elif 2 | Cheatsheet 3 | -------------------------------------------------------------------------------- /PDFs/c-cheatsheet-1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-kiratsata/brocode-cheatsheets/HEAD/PDFs/c-cheatsheet-1.0.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-kiratsata/brocode-cheatsheets/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-kiratsata/brocode-cheatsheets/HEAD/_config.yml -------------------------------------------------------------------------------- /frontend/css-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-kiratsata/brocode-cheatsheets/HEAD/frontend/css-cheatsheet.md -------------------------------------------------------------------------------- /frontend/html-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-kiratsata/brocode-cheatsheets/HEAD/frontend/html-cheatsheet.md -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-kiratsata/brocode-cheatsheets/HEAD/images/logo.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-kiratsata/brocode-cheatsheets/HEAD/index.md -------------------------------------------------------------------------------- /languages/c-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-kiratsata/brocode-cheatsheets/HEAD/languages/c-cheatsheet.md -------------------------------------------------------------------------------- /languages/java-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-kiratsata/brocode-cheatsheets/HEAD/languages/java-cheatsheet.md -------------------------------------------------------------------------------- /languages/python-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-kiratsata/brocode-cheatsheets/HEAD/languages/python-cheatsheet.md -------------------------------------------------------------------------------- /logic-gates.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------