├── .gitignore ├── CHEATSHEETS.md ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── kickstart-backend ├── 1-http.md ├── 2-django.md ├── 3-orm.md ├── 4-postgres.md └── images │ ├── anatomy_of_css.pdf │ ├── anatomy_of_css_cmu.pdf │ ├── anatomy_of_tag.pdf │ ├── anatomy_of_tag_cmu.pdf │ ├── joins.pdf │ ├── joins.svg │ ├── joins.svg.2018_10_22_11_52_54.0.svg │ ├── model_view_template.pdf │ ├── model_view_template.svg │ ├── request_response.pdf │ ├── request_response.pdf_tex │ └── request_response.svg ├── kickstart-career ├── 1-algorithms.md ├── 2-industry.md └── images │ ├── scrum.pdf │ ├── scrum.svg │ ├── security.pdf │ ├── security.svg │ ├── security.svg.png │ ├── server_topology.pdf │ └── server_topology.svg ├── kickstart-frontend ├── 1-css.md ├── 2-javascript.md ├── 3-react.md ├── 4-components.md ├── 5-mern.md └── images │ ├── box_model_diagram.pdf │ ├── box_model_diagram.svg │ ├── box_model_diagram.svg.png │ ├── grid_child_example.pdf │ ├── grid_child_example.svg │ ├── grid_template_example.pdf │ ├── grid_template_example.svg │ ├── react-redux-overview.png │ ├── reactredux-diagram.pdf │ ├── reactredux-diagram.svg │ ├── reactredux-diagram.svg.2018_11_26_12_48_17.0.svg │ └── useeffect_lifecycle.png ├── kickstart-fundamentals ├── 1-html-css.md ├── 2-bash-git.md ├── 3-python.md ├── 4-modules-oop.md └── images │ ├── anatomy_of_css.pdf │ ├── anatomy_of_css.svg │ ├── anatomy_of_css_cmu.pdf │ ├── anatomy_of_css_cmu.svg │ ├── anatomy_of_tag.pdf │ ├── anatomy_of_tag.png │ ├── anatomy_of_tag.svg │ ├── anatomy_of_tag_cmu.pdf │ ├── anatomy_of_tag_cmu.svg │ ├── antomy_of_css_cmu.svg │ └── css_block.png ├── templates ├── cheatsheet.latex ├── letterhead.pdf ├── letterhead.png ├── letterhead.svg └── logo.png └── topical ├── cli-bash.md ├── django.md ├── images ├── model_view_template.pdf └── model_view_template.svg ├── javascript-for-pythonistas.md ├── modern-html-css.md ├── python-for-js-developers.md ├── python.md ├── react-hooks-useeffect.md └── react-redux.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/.gitignore -------------------------------------------------------------------------------- /CHEATSHEETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/CHEATSHEETS.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/README.md -------------------------------------------------------------------------------- /kickstart-backend/1-http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/1-http.md -------------------------------------------------------------------------------- /kickstart-backend/2-django.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/2-django.md -------------------------------------------------------------------------------- /kickstart-backend/3-orm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/3-orm.md -------------------------------------------------------------------------------- /kickstart-backend/4-postgres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/4-postgres.md -------------------------------------------------------------------------------- /kickstart-backend/images/anatomy_of_css.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/images/anatomy_of_css.pdf -------------------------------------------------------------------------------- /kickstart-backend/images/anatomy_of_css_cmu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/images/anatomy_of_css_cmu.pdf -------------------------------------------------------------------------------- /kickstart-backend/images/anatomy_of_tag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/images/anatomy_of_tag.pdf -------------------------------------------------------------------------------- /kickstart-backend/images/anatomy_of_tag_cmu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/images/anatomy_of_tag_cmu.pdf -------------------------------------------------------------------------------- /kickstart-backend/images/joins.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/images/joins.pdf -------------------------------------------------------------------------------- /kickstart-backend/images/joins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/images/joins.svg -------------------------------------------------------------------------------- /kickstart-backend/images/joins.svg.2018_10_22_11_52_54.0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/images/joins.svg.2018_10_22_11_52_54.0.svg -------------------------------------------------------------------------------- /kickstart-backend/images/model_view_template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/images/model_view_template.pdf -------------------------------------------------------------------------------- /kickstart-backend/images/model_view_template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/images/model_view_template.svg -------------------------------------------------------------------------------- /kickstart-backend/images/request_response.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/images/request_response.pdf -------------------------------------------------------------------------------- /kickstart-backend/images/request_response.pdf_tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/images/request_response.pdf_tex -------------------------------------------------------------------------------- /kickstart-backend/images/request_response.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-backend/images/request_response.svg -------------------------------------------------------------------------------- /kickstart-career/1-algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-career/1-algorithms.md -------------------------------------------------------------------------------- /kickstart-career/2-industry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-career/2-industry.md -------------------------------------------------------------------------------- /kickstart-career/images/scrum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-career/images/scrum.pdf -------------------------------------------------------------------------------- /kickstart-career/images/scrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-career/images/scrum.svg -------------------------------------------------------------------------------- /kickstart-career/images/security.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-career/images/security.pdf -------------------------------------------------------------------------------- /kickstart-career/images/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-career/images/security.svg -------------------------------------------------------------------------------- /kickstart-career/images/security.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-career/images/security.svg.png -------------------------------------------------------------------------------- /kickstart-career/images/server_topology.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-career/images/server_topology.pdf -------------------------------------------------------------------------------- /kickstart-career/images/server_topology.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-career/images/server_topology.svg -------------------------------------------------------------------------------- /kickstart-frontend/1-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/1-css.md -------------------------------------------------------------------------------- /kickstart-frontend/2-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/2-javascript.md -------------------------------------------------------------------------------- /kickstart-frontend/3-react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/3-react.md -------------------------------------------------------------------------------- /kickstart-frontend/4-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/4-components.md -------------------------------------------------------------------------------- /kickstart-frontend/5-mern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/5-mern.md -------------------------------------------------------------------------------- /kickstart-frontend/images/box_model_diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/images/box_model_diagram.pdf -------------------------------------------------------------------------------- /kickstart-frontend/images/box_model_diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/images/box_model_diagram.svg -------------------------------------------------------------------------------- /kickstart-frontend/images/box_model_diagram.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/images/box_model_diagram.svg.png -------------------------------------------------------------------------------- /kickstart-frontend/images/grid_child_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/images/grid_child_example.pdf -------------------------------------------------------------------------------- /kickstart-frontend/images/grid_child_example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/images/grid_child_example.svg -------------------------------------------------------------------------------- /kickstart-frontend/images/grid_template_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/images/grid_template_example.pdf -------------------------------------------------------------------------------- /kickstart-frontend/images/grid_template_example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/images/grid_template_example.svg -------------------------------------------------------------------------------- /kickstart-frontend/images/react-redux-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/images/react-redux-overview.png -------------------------------------------------------------------------------- /kickstart-frontend/images/reactredux-diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/images/reactredux-diagram.pdf -------------------------------------------------------------------------------- /kickstart-frontend/images/reactredux-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/images/reactredux-diagram.svg -------------------------------------------------------------------------------- /kickstart-frontend/images/reactredux-diagram.svg.2018_11_26_12_48_17.0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/images/reactredux-diagram.svg.2018_11_26_12_48_17.0.svg -------------------------------------------------------------------------------- /kickstart-frontend/images/useeffect_lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-frontend/images/useeffect_lifecycle.png -------------------------------------------------------------------------------- /kickstart-fundamentals/1-html-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/1-html-css.md -------------------------------------------------------------------------------- /kickstart-fundamentals/2-bash-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/2-bash-git.md -------------------------------------------------------------------------------- /kickstart-fundamentals/3-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/3-python.md -------------------------------------------------------------------------------- /kickstart-fundamentals/4-modules-oop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/4-modules-oop.md -------------------------------------------------------------------------------- /kickstart-fundamentals/images/anatomy_of_css.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/images/anatomy_of_css.pdf -------------------------------------------------------------------------------- /kickstart-fundamentals/images/anatomy_of_css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/images/anatomy_of_css.svg -------------------------------------------------------------------------------- /kickstart-fundamentals/images/anatomy_of_css_cmu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/images/anatomy_of_css_cmu.pdf -------------------------------------------------------------------------------- /kickstart-fundamentals/images/anatomy_of_css_cmu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/images/anatomy_of_css_cmu.svg -------------------------------------------------------------------------------- /kickstart-fundamentals/images/anatomy_of_tag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/images/anatomy_of_tag.pdf -------------------------------------------------------------------------------- /kickstart-fundamentals/images/anatomy_of_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/images/anatomy_of_tag.png -------------------------------------------------------------------------------- /kickstart-fundamentals/images/anatomy_of_tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/images/anatomy_of_tag.svg -------------------------------------------------------------------------------- /kickstart-fundamentals/images/anatomy_of_tag_cmu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/images/anatomy_of_tag_cmu.pdf -------------------------------------------------------------------------------- /kickstart-fundamentals/images/anatomy_of_tag_cmu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/images/anatomy_of_tag_cmu.svg -------------------------------------------------------------------------------- /kickstart-fundamentals/images/antomy_of_css_cmu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/images/antomy_of_css_cmu.svg -------------------------------------------------------------------------------- /kickstart-fundamentals/images/css_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/kickstart-fundamentals/images/css_block.png -------------------------------------------------------------------------------- /templates/cheatsheet.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/templates/cheatsheet.latex -------------------------------------------------------------------------------- /templates/letterhead.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/templates/letterhead.pdf -------------------------------------------------------------------------------- /templates/letterhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/templates/letterhead.png -------------------------------------------------------------------------------- /templates/letterhead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/templates/letterhead.svg -------------------------------------------------------------------------------- /templates/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/templates/logo.png -------------------------------------------------------------------------------- /topical/cli-bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/topical/cli-bash.md -------------------------------------------------------------------------------- /topical/django.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/topical/django.md -------------------------------------------------------------------------------- /topical/images/model_view_template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/topical/images/model_view_template.pdf -------------------------------------------------------------------------------- /topical/images/model_view_template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/topical/images/model_view_template.svg -------------------------------------------------------------------------------- /topical/javascript-for-pythonistas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/topical/javascript-for-pythonistas.md -------------------------------------------------------------------------------- /topical/modern-html-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/topical/modern-html-css.md -------------------------------------------------------------------------------- /topical/python-for-js-developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/topical/python-for-js-developers.md -------------------------------------------------------------------------------- /topical/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/topical/python.md -------------------------------------------------------------------------------- /topical/react-hooks-useeffect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/topical/react-hooks-useeffect.md -------------------------------------------------------------------------------- /topical/react-redux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kickstartcoding/cheatsheets/HEAD/topical/react-redux.md --------------------------------------------------------------------------------